@!macro abstract_executor_service_public_api @!visibility private
The set of possible fallback policies that may be set at thread pool creation.
@!macro executor_service_method_auto_terminate_setter
# File lib/concurrent/executor/abstract_executor_service.rb, line 61 def auto_terminate=(value) synchronize { self.ns_auto_terminate = value } end
@!macro executor_service_method_auto_terminate_question
# File lib/concurrent/executor/abstract_executor_service.rb, line 56 def auto_terminate? synchronize { ns_auto_terminate? } end
@!macro executor_service_method_kill
# File lib/concurrent/executor/abstract_executor_service.rb, line 31 def kill raise NotImplementedError end
@!macro executor_service_method_running_question
# File lib/concurrent/executor/abstract_executor_service.rb, line 41 def running? synchronize { ns_running? } end
@!macro executor_service_method_shutdown
# File lib/concurrent/executor/abstract_executor_service.rb, line 26 def shutdown raise NotImplementedError end
@!macro executor_service_method_shutdown_question
# File lib/concurrent/executor/abstract_executor_service.rb, line 51 def shutdown? synchronize { ns_shutdown? } end
Generated with the Darkfish Rdoc Generator 2.