Method: Kafka::Protocol::DescribeGroupsResponse::Group#initialize
- Defined in:
- lib/kafka/protocol/describe_groups_response.rb
#initialize(error_code:, group_id:, protocol_type:, protocol:, state:, members:) ⇒ Group
Returns a new instance of Group.
9 10 11 12 13 14 15 16 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 9 def initialize(error_code:, group_id:, protocol_type:, protocol:, state:, members:) @error_code = error_code @group_id = group_id @protocol_type = protocol_type @protocol = protocol @state = state @members = members end |