Class Pipe<T>
- All Implemented Interfaces:
MutinyDelegate
ReadStream to a WriteStream and performs flow control where necessary to
prevent the write stream buffer from getting overfull.
Instances of this class read items from a ReadStream and write them to a WriteStream. If data
can be read faster than it can be written this could result in the write queue of the WriteStream growing
without bound, eventually causing it to exhaust all available RAM.
To prevent this, after each write, instances of this class check whether the write queue of the WriteStream is full, and if so, the ReadStream is paused, and a drainHandler is set on the
WriteStream.
When the WriteStream has processed half of its backlog, the drainHandler will be
called, which results in the pump resuming the ReadStream.
This class can be used to pipe from any ReadStream to any WriteStream,
e.g. from an HttpServerRequest to an AsyncFile,
or from NetSocket to a WebSocket.
Please see the documentation for more information.
NOTE: This class has been automatically generated from the original non Mutiny-ified interface.
- See Also:
-
Pipe
-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close the pipe.endOnComplete(boolean end) endOnFailure(boolean end) endOnSuccess(boolean end) booleanio.vertx.core.streams.Pipe<T>Get the delegate instance.inthashCode()static <T> Pipe<T>newInstance(io.vertx.core.streams.Pipe<T> delegate) Creates a new instance of thePipe.static <T> Pipe<T>newInstance(io.vertx.core.streams.Pipe<T> delegate, TypeArg<T> typeArg_0) Creates a new instance of thePipe.io.smallrye.mutiny.Uni<Void>to(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream.voidtoAndAwait(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream.toAndForget(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream.toString()
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
-
Constructor Details
-
Pipe
Create a new instance ofPipedelegating to the given (non-null) instance ofPipe. -
Pipe
-
Pipe
-
-
Method Details
-
getDelegate
Get the delegate instance.This method returns the instance on which this shim is delegating the calls. And so, give you access to the bare API.
- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate instance
-
to
Start to pipe the elements to the destinationWriteStream.When the operation fails with a write error, the source stream is resumed.
Unlike the bare Vert.x variant, this method returns a
Uni. The uni emits the result of the operation as item. If the operation fails, the uni emits the failure.Don't forget to subscribe on it to trigger the operation.
- Parameters:
dst- the destination write stream- Returns:
- A
Unirepresenting the asynchronous result of this operation. - See Also:
-
io.vertx.core.streams.Pipe#to(WriteStream)
-
toAndAwait
Start to pipe the elements to the destinationWriteStream.When the operation fails with a write error, the source stream is resumed.
Unlike the bare Vert.x variant, this method returns a
Void. This method awaits indefinitely for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in aRuntimeException).- Parameters:
dst- the destination write stream- See Also:
-
io.vertx.core.streams.Pipe#to(WriteStream)
-
toAndForget
Start to pipe the elements to the destinationWriteStream.When the operation fails with a write error, the source stream is resumed.
Unlike the bare Vert.x variant, this method ignores the
Voidresult or any failure.- Parameters:
dst- the destination write stream- Returns:
- The current instance to chain operations if needed.
- See Also:
-
io.vertx.core.streams.Pipe#to(WriteStream)
-
endOnFailure
- Parameters:
end-trueto end the stream on a sourceReadStreamfailure- Returns:
- a reference to this, so the API can be used fluently
-
endOnSuccess
- Parameters:
end-trueto end the stream on a sourceReadStreamsuccess- Returns:
- a reference to this, so the API can be used fluently
-
endOnComplete
Set totrueto callWriteStream.end()when the sourceReadStreamcompletes,falseotherwise.Calling this overwrites
endOnFailure(boolean)andendOnSuccess(boolean).- Parameters:
end-trueto end the stream on a sourceReadStreamcompletion- Returns:
- a reference to this, so the API can be used fluently
-
close
public void close()Close the pipe.The streams handlers will be unset and the read stream resumed unless it is already ended.
-
newInstance
Creates a new instance of thePipe. -
newInstance
Creates a new instance of thePipe. -
hashCode
public int hashCode() -
equals
-
toString
-