Class ContainerPausingBackOffHandler

java.lang.Object
org.springframework.kafka.listener.ContainerPausingBackOffHandler
All Implemented Interfaces:
BackOffHandler

public class ContainerPausingBackOffHandler extends Object implements BackOffHandler
A BackOffHandler that pauses the container for the backoff.
Since:
2.9
  • Constructor Details

  • Method Details

    • onNextBackOff

      public void onNextBackOff(@Nullable MessageListenerContainer container, Exception exception, long nextBackOff)
      Description copied from interface: BackOffHandler
      Perform the next back off.
      Specified by:
      onNextBackOff in interface BackOffHandler
      Parameters:
      container - the container.
      exception - the exception.
      nextBackOff - the next back off.
    • onNextBackOff

      public void onNextBackOff(MessageListenerContainer container, org.apache.kafka.common.TopicPartition partition, long nextBackOff)
      Description copied from interface: BackOffHandler
      Perform the next back off for a partition.
      Specified by:
      onNextBackOff in interface BackOffHandler
      Parameters:
      container - the container.
      partition - the partition.
      nextBackOff - the next back off.