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 theoriginal
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
endOnComplete
(boolean end) endOnFailure
(boolean end) endOnSuccess
(boolean end) boolean
io.vertx.core.streams.Pipe
int
hashCode()
static <T> Pipe<T>
newInstance
(io.vertx.core.streams.Pipe arg) static <T> Pipe<T>
newInstance
(io.vertx.core.streams.Pipe arg, TypeArg<T> __typeArg_T) io.smallrye.mutiny.Uni<Void>
to
(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream
.toAndAwait
(WriteStream<T> dst) Blocking variant ofto(io.vertx.mutiny.core.streams.WriteStream)
.void
toAndForget
(WriteStream<T> dst) Variant ofto(io.vertx.mutiny.core.streams.WriteStream)
that ignores the result of the operation.toString()
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
-
Constructor Details
-
Pipe
public Pipe(io.vertx.core.streams.Pipe delegate) -
Pipe
-
Pipe
-
-
Method Details
-
getDelegate
public io.vertx.core.streams.Pipe getDelegate()- Specified by:
getDelegate
in interfaceMutinyDelegate
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
endOnFailure
- Parameters:
end
-true
to end the stream on a sourceReadStream
failure- Returns:
- a reference to this, so the API can be used fluently
-
endOnSuccess
- Parameters:
end
-true
to end the stream on a sourceReadStream
success- Returns:
- a reference to this, so the API can be used fluently
-
endOnComplete
- Parameters:
end
-true
to end the stream on a sourceReadStream
completion- Returns:
- a reference to this, so the API can be used fluently
-
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
. Don't forget to subscribe on it to trigger the operation.- Parameters:
dst
- the destination write stream- Returns:
- the
uni
firing the result of the operation when completed, or a failure if the operation failed.
-
toAndAwait
Blocking variant ofto(io.vertx.mutiny.core.streams.WriteStream)
.This method waits 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 a RuntimeException).
- Parameters:
dst
- the destination write stream- Returns:
- the Void instance produced by the operation.
-
toAndForget
Variant ofto(io.vertx.mutiny.core.streams.WriteStream)
that ignores the result of the operation.This method subscribes on the result of
to(io.vertx.mutiny.core.streams.WriteStream)
, but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromto(io.vertx.mutiny.core.streams.WriteStream)
but you don't need to compose it with other operations.- Parameters:
dst
- the destination write stream
-
close
public void close() -
newInstance
-
newInstance
-