module SerialExecutor
Indicates that the including ‘Executor` or `ExecutorService` guarantees that all operations will occur in the order they are post and that no two operations may occur simultaneously. This module provides no functionality and provides no guarantees. That is the responsibility of the including class. This module exists solely to allow the including object to be interrogated for its serialization status.
@example
class Foo include Garcon::SerialExecutor end foo = Foo.new foo.is_a? Garcon::Executor # => true foo.is_a? Garcon::SerialExecutor # => true foo.serialized? # => true
Public Instance Methods
serialized?()
click to toggle source
@note
Always returns `true`
# File lib/garcon/task/executor.rb, line 130 def serialized? true end