Class: Kafka::Protocol::HeartbeatResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/kafka/protocol/heartbeat_response.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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_codeObject (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