A wrapper/delegator for any `ExecutorService` that guarantees serialized execution of tasks.
@see [SimpleDelegator](www.ruby-doc.org/stdlib-2.1.2/libdoc/delegate/rdoc/SimpleDelegator.html) @see Concurrent::SerializedExecution
@!macro executor_service_method_post
# File lib/concurrent/executor/serialized_execution.rb, line 124 def post(*args, &task) Kernel.raise ArgumentError.new('no block given') unless block_given? return false unless running? @serializer.post(@executor, *args, &task) end
Generated with the Darkfish Rdoc Generator 2.