Sha256: cc7fae34c782fdeb0859e5e681814b34e0a7218e8fedf6be9281cd8b98da7e29
Contents?: true
Size: 543 Bytes
Versions: 37
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module Karafka module Web module Ui # Namespace for models representing pieces of data about Karafka setup module Models # Representation of data of a Karafka subscription group class SubscriptionGroup < Lib::HashProxy # @return [Array<Topic>] Data of topics belonging to this subscription group def topics super.values.map do |topic_hash| Topic.new(topic_hash) end end end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems