Class: Kafka::Protocol::OffsetFetchRequest
- Inherits:
-
Object
- Object
- Kafka::Protocol::OffsetFetchRequest
- Defined in:
- lib/kafka/protocol/offset_fetch_request.rb
Instance Method Summary collapse
- #api_key ⇒ Object
-
#api_version ⇒ Object
setting topics to nil fetches all offsets for a consumer group and that feature is only available in API version 2+.
- #encode(encoder) ⇒ Object
-
#initialize(group_id:, topics:) ⇒ OffsetFetchRequest
constructor
A new instance of OffsetFetchRequest.
- #response_class ⇒ Object
Constructor Details
#initialize(group_id:, topics:) ⇒ OffsetFetchRequest
Returns a new instance of OffsetFetchRequest.
6 7 8 9 |
# File 'lib/kafka/protocol/offset_fetch_request.rb', line 6 def initialize(group_id:, topics:) @group_id = group_id @topics = topics end |
Instance Method Details
#api_key ⇒ Object
11 12 13 |
# File 'lib/kafka/protocol/offset_fetch_request.rb', line 11 def api_key OFFSET_FETCH_API end |
#api_version ⇒ Object
setting topics to nil fetches all offsets for a consumer group and that feature is only available in API version 2+
17 18 19 |
# File 'lib/kafka/protocol/offset_fetch_request.rb', line 17 def api_version @topics.nil? ? 2 : 1 end |
#encode(encoder) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/kafka/protocol/offset_fetch_request.rb', line 25 def encode(encoder) encoder.write_string(@group_id) encoder.write_array(@topics) do |topic, partitions| encoder.write_string(topic) encoder.write_array(partitions) do |partition| encoder.write_int32(partition) end end end |
#response_class ⇒ Object
21 22 23 |
# File 'lib/kafka/protocol/offset_fetch_request.rb', line 21 def response_class OffsetFetchResponse end |