Class: SolidQueueGuard::Checks::Base Private
- Inherits:
-
Object
- Object
- SolidQueueGuard::Checks::Base
- Defined in:
- lib/solid_queue_guard/checks/base.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Direct Known Subclasses
Config::AdapterCheck, Config::ConnectsToCheck, Config::EnvFlagsCheck, Config::ProcessHeartbeatConfigCheck, Config::PumaColocatedCheck, Config::QueueDatabaseCheck, Config::QueueSchemaCheck, Config::SchedulerConfigCheck, Config::ThreadPoolCheck, Config::TopologyRecommendationCheck, Config::WorkerCoverageCheck
Class Method Summary collapse
- .call(**options) ⇒ Object private
Instance Method Summary collapse
- #call ⇒ Object private
-
#initialize(**options) ⇒ Base
constructor
private
A new instance of Base.
Constructor Details
#initialize(**options) ⇒ Base
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Base.
11 12 13 |
# File 'lib/solid_queue_guard/checks/base.rb', line 11 def initialize(**) @options = end |
Class Method Details
.call(**options) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 |
# File 'lib/solid_queue_guard/checks/base.rb', line 7 def self.call(**) new(**).call end |
Instance Method Details
#call ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/solid_queue_guard/checks/base.rb', line 15 def call raise NotImplementedError end |