Sha256: b7077485f396fa2d3a6a37159bde16ec93a56a47736cb96cd0f192befd5de2f1

Contents?: true

Size: 1.73 KB

Versions: 39

Compression:

Stored size: 1.73 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
    module Routing
      module Features
        # Holds pattern info reference
        # Type is set to:
        #   `:regular` - in case patterns are not used and topic is just a regular existing topic
        #                matched directly based on the name
        #   `:discovered` - in case it is a real topic on which we started to listed
        #   `:matcher` - represents a regular expression used by librdkafka
        class Patterns < Base
          # Config for pattern based topic
          # Only pattern related topics are active in this context
          Config = Struct.new(
            :active,
            :type,
            :pattern,
            keyword_init: true
          ) do
            alias_method :active?, :active

            # @return [Boolean] is this a matcher topic
            def matcher?
              type == :matcher
            end

            # @return [Boolean] is this a discovered topic
            def discovered?
              type == :discovered
            end

            # @return [Boolean] is this a regular topic
            def regular?
              type == :regular
            end
          end
        end
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
karafka-2.3.0.rc1 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.3.0.alpha2 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.3.0.alpha1 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.14 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.13 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.12 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.11 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.10 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.9 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.8 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.8.beta1 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.7 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.6 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.5 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.4 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.3 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.2 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.1 lib/karafka/pro/routing/features/patterns/config.rb
karafka-2.2.0 lib/karafka/pro/routing/features/patterns/config.rb