Class: Fluent::KafkaInput::TopicEntry
- Inherits:
-
Object
- Object
- Fluent::KafkaInput::TopicEntry
- Defined in:
- lib/fluent/plugin/in_kafka.rb
Instance Attribute Summary collapse
-
#offset ⇒ Object
readonly
Returns the value of attribute offset.
-
#partition ⇒ Object
readonly
Returns the value of attribute partition.
-
#topic ⇒ Object
readonly
Returns the value of attribute topic.
Instance Method Summary collapse
-
#initialize(topic, partition, offset) ⇒ TopicEntry
constructor
A new instance of TopicEntry.
Constructor Details
#initialize(topic, partition, offset) ⇒ TopicEntry
Returns a new instance of TopicEntry.
310 311 312 313 314 |
# File 'lib/fluent/plugin/in_kafka.rb', line 310 def initialize(topic, partition, offset) @topic = topic @partition = partition @offset = offset end |
Instance Attribute Details
#offset ⇒ Object (readonly)
Returns the value of attribute offset.
315 316 317 |
# File 'lib/fluent/plugin/in_kafka.rb', line 315 def offset @offset end |
#partition ⇒ Object (readonly)
Returns the value of attribute partition.
315 316 317 |
# File 'lib/fluent/plugin/in_kafka.rb', line 315 def partition @partition end |
#topic ⇒ Object (readonly)
Returns the value of attribute topic.
315 316 317 |
# File 'lib/fluent/plugin/in_kafka.rb', line 315 def topic @topic end |