Class: Sbmt::Outbox::RetryStrategies::Base

Inherits:
DryInteractor show all
Defined in:
app/interactors/sbmt/outbox/retry_strategies/base.rb

Direct Known Subclasses

ExponentialBackoff, LatestAvailable, NoDelay

Instance Method Summary collapse

Methods inherited from DryInteractor

call

Instance Method Details

#callObject

Raises:

  • (NotImplementedError)


9
10
11
# File 'app/interactors/sbmt/outbox/retry_strategies/base.rb', line 9

def call
  raise NotImplementedError, "Implement #call for Sbmt::Outbox::RetryStrategies::Base"
end