Java org.springframework.kafka.support TopicPartitionInitialOffset fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.kafka.support TopicPartitionInitialOffset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.kafka.support TopicPartitionInitialOffset.

The text is from its open source code.

Constructor

TopicPartitionInitialOffset(String topic, int partition, Long initialOffset, boolean relativeToCurrent)
Construct an instance with the provided initial offset.
TopicPartitionInitialOffset(String topic, int partition, Long offset, @Nullable SeekPosition position)
Construct an instance with the provided SeekPosition .
TopicPartitionInitialOffset(String topic, int partition)
Construct an instance with no initial offset management.
TopicPartitionInitialOffset(String topic, int partition, Long initialOffset)
Construct an instance with the provided initial offset with #isRelativeToCurrent() false.
TopicPartitionInitialOffset(String topic, int partition, SeekPosition position)
Construct an instance with the provided SeekPosition .
TopicPartitionInitialOffset(TopicPartition topicPartition, Long offset, @Nullable SeekPosition position)
Construct an instance with the provided SeekPosition .