Class: ActiveSupport::Testing::ParallelizeExecutor
- Defined in:
- activesupport/lib/active_support/testing/parallelize_executor.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#parallelize_with ⇒ Object
readonly
Returns the value of attribute parallelize_with.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
-
#threshold ⇒ Object
readonly
Returns the value of attribute threshold.
Instance Method Summary collapse
- #<<(work) ⇒ Object
-
#initialize(size:, with:, threshold: ActiveSupport.test_parallelization_threshold) ⇒ ParallelizeExecutor
constructor
A new instance of ParallelizeExecutor.
- #shutdown ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize(size:, with:, threshold: ActiveSupport.test_parallelization_threshold) ⇒ ParallelizeExecutor
Returns a new instance of ParallelizeExecutor.
8 9 10 11 12 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 8 def initialize(size:, with:, threshold: ActiveSupport.test_parallelization_threshold) @size = size @parallelize_with = with @threshold = threshold end |
Instance Attribute Details
#parallelize_with ⇒ Object (readonly)
Returns the value of attribute parallelize_with
6 7 8 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 6 def parallelize_with @parallelize_with end |
#size ⇒ Object (readonly)
Returns the value of attribute size
6 7 8 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 6 def size @size end |
#threshold ⇒ Object (readonly)
Returns the value of attribute threshold
6 7 8 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 6 def threshold @threshold end |
Instance Method Details
#<<(work) ⇒ Object
21 22 23 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 21 def <<(work) parallel_executor << work if parallelized? end |
#shutdown ⇒ Object
25 26 27 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 25 def shutdown parallel_executor.shutdown if parallelized? end |
#start ⇒ Object
14 15 16 17 18 19 |
# File 'activesupport/lib/active_support/testing/parallelize_executor.rb', line 14 def start parallelize if should_parallelize? show_execution_info parallel_executor.start if parallelized? end |