Class: Rdkafka::Consumer::Partition
- Inherits:
-
Object
- Object
- Rdkafka::Consumer::Partition
- Defined in:
- lib/rdkafka/consumer/partition.rb
Overview
Information about a partition, used in TopicPartitionList.
Instance Attribute Summary collapse
-
#offset ⇒ Integer
readonly
Partition's offset.
-
#partition ⇒ Integer
readonly
Partition number.
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Whether another partition is equal to this.
-
#inspect ⇒ String
Human readable representation of this partition.
-
#to_s ⇒ String
Human readable representation of this partition.
Instance Attribute Details
#offset ⇒ Integer (readonly)
Partition's offset
11 12 13 |
# File 'lib/rdkafka/consumer/partition.rb', line 11 def offset @offset end |
#partition ⇒ Integer (readonly)
Partition number
7 8 9 |
# File 'lib/rdkafka/consumer/partition.rb', line 7 def partition @partition end |
Instance Method Details
#==(other) ⇒ Boolean
Whether another partition is equal to this
33 34 35 36 37 |
# File 'lib/rdkafka/consumer/partition.rb', line 33 def ==(other) self.class == other.class && self.partition == other.partition && self.offset == other.offset end |
#inspect ⇒ String
Human readable representation of this partition.
27 28 29 |
# File 'lib/rdkafka/consumer/partition.rb', line 27 def inspect to_s end |
#to_s ⇒ String
Human readable representation of this partition.
21 22 23 |
# File 'lib/rdkafka/consumer/partition.rb', line 21 def to_s "<Partition #{partition} with offset #{offset}>" end |