Class: Kafka::Protocol::HeartbeatResponse
- Inherits:
-
Object
- Object
- Kafka::Protocol::HeartbeatResponse
- Defined in:
- lib/kafka/protocol/heartbeat_response.rb
Instance Attribute Summary collapse
-
#error_code ⇒ Object
readonly
Returns the value of attribute error_code.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(error_code:) ⇒ HeartbeatResponse
constructor
A new instance of HeartbeatResponse.
Constructor Details
#initialize(error_code:) ⇒ HeartbeatResponse
Returns a new instance of HeartbeatResponse.
8 9 10 |
# File 'lib/kafka/protocol/heartbeat_response.rb', line 8 def initialize(error_code:) @error_code = error_code end |
Instance Attribute Details
#error_code ⇒ Object (readonly)
Returns the value of attribute error_code.
6 7 8 |
# File 'lib/kafka/protocol/heartbeat_response.rb', line 6 def error_code @error_code end |
Class Method Details
.decode(decoder) ⇒ Object
12 13 14 |
# File 'lib/kafka/protocol/heartbeat_response.rb', line 12 def self.decode(decoder) new(error_code: decoder.int16) end |