Class: AWS::Flow::WorkerDefaults
- Defined in:
- lib/aws/decider/options.rb
Overview
Defaults for the WorkerOptions class.
Instance Method Summary collapse
-
#use_forking ⇒ Boolean
Whether to use Ruby’s
forkfor launching new workers.
Methods inherited from Defaults
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class AWS::Flow::Defaults
Instance Method Details
#use_forking ⇒ Boolean
Whether to use Ruby’s fork for launching new workers. The default is true.
On Windows, you should override this default value and set use_forking to false. See AWS::Flow::WorkerOptions for more information.
127 |
# File 'lib/aws/decider/options.rb', line 127 def use_forking; true; end |