Class: Kafka::Protocol::DescribeGroupsResponse::Member
- Inherits:
-
Object
- Object
- Kafka::Protocol::DescribeGroupsResponse::Member
- Defined in:
- lib/kafka/protocol/describe_groups_response.rb
Instance Attribute Summary collapse
-
#client_host ⇒ Object
readonly
Returns the value of attribute client_host.
-
#client_id ⇒ Object
readonly
Returns the value of attribute client_id.
-
#member_assignment ⇒ Object
readonly
Returns the value of attribute member_assignment.
-
#member_id ⇒ Object
readonly
Returns the value of attribute member_id.
Instance Method Summary collapse
-
#initialize(member_id:, client_id:, client_host:, member_assignment:) ⇒ Member
constructor
A new instance of Member.
Constructor Details
#initialize(member_id:, client_id:, client_host:, member_assignment:) ⇒ Member
Returns a new instance of Member.
22 23 24 25 26 27 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 22 def initialize(member_id:, client_id:, client_host:, member_assignment:) @member_id = member_id @client_id = client_id @client_host = client_host @member_assignment = member_assignment end |
Instance Attribute Details
#client_host ⇒ Object (readonly)
Returns the value of attribute client_host.
20 21 22 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 20 def client_host @client_host end |
#client_id ⇒ Object (readonly)
Returns the value of attribute client_id.
20 21 22 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 20 def client_id @client_id end |
#member_assignment ⇒ Object (readonly)
Returns the value of attribute member_assignment.
20 21 22 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 20 def member_assignment @member_assignment end |
#member_id ⇒ Object (readonly)
Returns the value of attribute member_id.
20 21 22 |
# File 'lib/kafka/protocol/describe_groups_response.rb', line 20 def member_id @member_id end |