Interface Pipe<T>
-
public interface Pipe<T>
Pipe data from aReadStream
to aWriteStream
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 aWriteStream
. If data can be read faster than it can be written this could result in the write queue of theWriteStream
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, theReadStream
is paused, and adrainHandler
is set on theWriteStream
.When the
WriteStream
has processed half of its backlog, thedrainHandler
will be called, which results in the pump resuming theReadStream
.This class can be used to pipe from any
ReadStream
to anyWriteStream
, e.g. from anHttpServerRequest
to anAsyncFile
, or fromNetSocket
to aWebSocket
.Please see the documentation for more information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Close the pipe.Pipe<T>
endOnComplete(boolean end)
Pipe<T>
endOnFailure(boolean end)
Pipe<T>
endOnSuccess(boolean end)
Future<Void>
to(WriteStream<T> dst)
Start to pipe the elements to the destinationWriteStream
.
-
-
-
Method Detail
-
endOnFailure
Pipe<T> endOnFailure(boolean end)
- Parameters:
end
-true
to end the stream on a sourceReadStream
failure- Returns:
- a reference to this, so the API can be used fluently
-
endOnSuccess
Pipe<T> endOnSuccess(boolean end)
- Parameters:
end
-true
to end the stream on a sourceReadStream
success- Returns:
- a reference to this, so the API can be used fluently
-
endOnComplete
Pipe<T> endOnComplete(boolean end)
Set totrue
to callWriteStream.end()
when the sourceReadStream
completes,false
otherwise.Calling this overwrites
endOnFailure(boolean)
andendOnSuccess(boolean)
.- Parameters:
end
-true
to end the stream on a sourceReadStream
completion- Returns:
- a reference to this, so the API can be used fluently
-
to
Future<Void> to(WriteStream<T> dst)
Start to pipe the elements to the destinationWriteStream
.When the operation fails with a write error, the source stream is resumed.
- Parameters:
dst
- the destination write stream- Returns:
- a future notified when the pipe operation completes
-
close
void close()
Close the pipe.The streams handlers will be unset and the read stream resumed unless it is already ended.
-
-