Interface PausableChannelConfiguration


public interface PausableChannelConfiguration
A channel that can be paused and resumed.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The name of the property to configure whether the channel is pausable.
    static final String
    The name of the property to configure whether the channel is initially paused.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Whether the channel is paused at subscribe time.
    The name of the channel.
  • Field Details

    • PAUSABLE_PROPERTY

      static final String PAUSABLE_PROPERTY
      The name of the property to configure whether the channel is pausable.
      See Also:
    • PAUSED_PROPERTY

      static final String PAUSED_PROPERTY
      The name of the property to configure whether the channel is initially paused.
      See Also:
  • Method Details

    • name

      String name()
      The name of the channel.
    • initiallyPaused

      boolean initiallyPaused()
      Whether the channel is paused at subscribe time.