All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.smallrye.reactive.messaging.PausableChannelConfiguration Maven / Gradle / Ivy

The newest version!
package io.smallrye.reactive.messaging;

/**
 * A channel that can be paused and resumed.
 */
public interface PausableChannelConfiguration {

    /**
     * The name of the property to configure whether the channel is pausable.
     */
    String PAUSABLE_PROPERTY = "pausable";

    /**
     * The name of the property to configure whether the channel is initially paused.
     */
    String PAUSED_PROPERTY = "initially-paused";

    /**
     * The name of the channel.
     */
    String name();

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy