Class: Karafka::Processing::Jobs::Revoked

Inherits:
Base
  • Object
show all
Defined in:
lib/karafka/processing/jobs/revoked.rb

Overview

Job that runs the revoked operation when we loose a partition on a consumer that lost it.

Instance Attribute Summary

Attributes inherited from Base

#executor

Instance Method Summary collapse

Methods inherited from Base

#after_call, #before_call, #before_enqueue, #non_blocking?

Constructor Details

#initialize(executor) ⇒ Revoked

Parameters:



10
11
12
13
# File 'lib/karafka/processing/jobs/revoked.rb', line 10

def initialize(executor)
  @executor = executor
  super()
end

Instance Method Details

#callObject

Runs the revoking job via an executor.



16
17
18
# File 'lib/karafka/processing/jobs/revoked.rb', line 16

def call
  executor.revoked
end