Package io.smallrye.reactive.messaging
Interface PausableChannel
public interface PausableChannel
A channel that can be paused and resumed.
-
Method Summary
-
Method Details
-
isPaused
boolean isPaused()Checks whether the channel is paused.- Returns:
trueif the channel is paused,falseotherwise
-
pause
void pause()Pauses the channel. -
resume
void resume()Resumes the channel.
-