class Concurrent::JavaExecutorService

def kill

def kill
  synchronize do
    @executor.shutdownNow
    nil
  end
end