Package akka.stream.javadsl
Interface SourceQueueWithComplete<T>
-
- All Superinterfaces:
SourceQueue<T>
public interface SourceQueueWithComplete<T> extends SourceQueue<T>
This trait adds completion support toSourceQueue
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
complete()
Completes the stream normally.void
fail(java.lang.Throwable ex)
Completes the stream with a failure.java.util.concurrent.CompletionStage<Done>
watchCompletion()
Method returns aCompletionStage
that will be completed if this operator completes, or will be failed when the stream fails, for example whenSourceQueueWithComplete.fail
is invoked.-
Methods inherited from interface akka.stream.javadsl.SourceQueue
offer
-
-
-
-
Method Detail
-
complete
void complete()
Completes the stream normally. UsewatchCompletion
to be notified of this operation’s success.Note that this only means the elements have been passed downstream, not that downstream has successfully processed them.
-
fail
void fail(java.lang.Throwable ex)
Completes the stream with a failure. UsewatchCompletion
to be notified of this operation’s success.Note that this only means the elements have been passed downstream, not that downstream has successfully processed them.
-
watchCompletion
java.util.concurrent.CompletionStage<Done> watchCompletion()
Method returns aCompletionStage
that will be completed if this operator completes, or will be failed when the stream fails, for example whenSourceQueueWithComplete.fail
is invoked.- Specified by:
watchCompletion
in interfaceSourceQueue<T>
-
-