Module: Concurrent::Executor
- Included in:
- JavaExecutor, PerThreadExecutor, RubyExecutor, SerialExecutor
- Defined in:
- lib/concurrent/executor/executor.rb
Instance Method Summary collapse
-
#can_overflow? ⇒ Boolean
Does the task queue have a maximum size?.
-
#serialized? ⇒ Boolean
Does this executor guarantee serialization of its operations?.
Instance Method Details
#can_overflow? ⇒ Boolean
Note:
Always returns ‘false`
Does the task queue have a maximum size?
16 17 18 |
# File 'lib/concurrent/executor/executor.rb', line 16 def can_overflow? false end |
#serialized? ⇒ Boolean
Note:
Always returns ‘false`
Does this executor guarantee serialization of its operations?
29 30 31 |
# File 'lib/concurrent/executor/executor.rb', line 29 def serialized? false end |