module Concurrent::ExecutorService

def <<(task)

@!macro executor_service_method_left_shift
def <<(task)
  post(&task)
  self
end