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