Package org.springframework.kafka.event
Class ConsumerPartitionResumedEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.springframework.context.ApplicationEvent
-
- org.springframework.kafka.event.KafkaEvent
-
- org.springframework.kafka.event.ConsumerPartitionResumedEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ConsumerPartitionResumedEvent extends KafkaEvent
An event published when a consumer partition is resumed.- Since:
- 2.7
- Author:
- Tomaz Fernandes
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConsumerPartitionResumedEvent(java.lang.Object source, java.lang.Object container, org.apache.kafka.common.TopicPartition partition)
Construct an instance with the provided source and partition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.kafka.common.TopicPartition
getPartition()
java.lang.String
toString()
-
Methods inherited from class org.springframework.kafka.event.KafkaEvent
getContainer, getSource
-
-
-
-
Constructor Detail
-
ConsumerPartitionResumedEvent
public ConsumerPartitionResumedEvent(java.lang.Object source, java.lang.Object container, org.apache.kafka.common.TopicPartition partition)
Construct an instance with the provided source and partition.- Parameters:
source
- the container instance that generated the event.container
- the container or the parent container if the container is a child.partition
- the partition.- Since:
- 2.7
-
-