Class: Fluent::KafkaInput::TopicEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/fluent/plugin/in_kafka.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topic, partition, offset) ⇒ TopicEntry

Returns a new instance of TopicEntry.



245
246
247
248
249
# File 'lib/fluent/plugin/in_kafka.rb', line 245

def initialize(topic, partition, offset)
  @topic = topic
  @partition = partition
  @offset = offset
end

Instance Attribute Details

#offsetObject (readonly)

Returns the value of attribute offset.



250
251
252
# File 'lib/fluent/plugin/in_kafka.rb', line 250

def offset
  @offset
end

#partitionObject (readonly)

Returns the value of attribute partition.



250
251
252
# File 'lib/fluent/plugin/in_kafka.rb', line 250

def partition
  @partition
end

#topicObject (readonly)

Returns the value of attribute topic.



250
251
252
# File 'lib/fluent/plugin/in_kafka.rb', line 250

def topic
  @topic
end