module Processor
Represents a collection of job processors that handle the execution of jobs. Provides different processing strategies including inline, aggregate, delayed, and generic processors.
Nested
Definitions
def self.new(processor: Inline, **options)
Create a new processor instance with the specified type and options.
Signature
-
option
processor
Class
The processor class to instantiate (defaults to Inline).
-
option
**options
Hash
Additional options to pass to the processor constructor.
-
returns
Object
A new processor instance.
Implementation
def self.new(processor: Inline, **options)
processor.new(**options)
end