Sha256: 947725de4211ead89c6d3a5affdda0abc96c4fe26e753c01d0f62e8de4e58dd2
Contents?: true
Size: 1.39 KB
Versions: 76
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true # This Karafka component is a Pro component under a commercial license. # This Karafka component is NOT licensed under LGPL. # # All of the commercial components are present in the lib/karafka/pro directory of this # repository and their usage requires commercial license agreement. # # Karafka has also commercial-friendly license, commercial support and commercial components. # # By sending a pull request to the pro components, you are agreeing to transfer the copyright of # your code to Maciej Mensfeld. module Karafka module Pro # Pro components related to processing part of Karafka module Processing # Pro jobs module Jobs # The revoked job type in a non-blocking variant. # This variant works "like" the regular revoked but does not block the queue. # # It can be useful when having long lasting jobs that would exceed `max.poll.interval` # in scenarios where there are more jobs than threads, without this being async we # would potentially stop polling class RevokedNonBlocking < ::Karafka::Processing::Jobs::Revoked # Makes this job non-blocking from the start # @param args [Array] any arguments accepted by `::Karafka::Processing::Jobs::Revoked` def initialize(*args) super @non_blocking = true end end end end end end
Version data entries
76 entries across 76 versions & 1 rubygems