Skip to content

Instantly share code, notes, and snippets.

View jairamc's full-sized avatar

Jairam Chandar jairamc

View GitHub Profile
@jairamc
jairamc / RunnableWithShutdown.scala
Created June 17, 2014 15:38
Custom shutdown in a Runnable
package com.datasift.playback
import java.util.concurrent.Executors
class RunnableWithShutdown extends MyRunnable {
@volatile
var isShutDown = false
override def shutdown() { isShutDown = true }