| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
TimeoutStream.pipeTo(WriteStream<Long> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Method and Description |
|---|---|
WriteStream<Buffer> |
DatagramSocket.sender(int port,
String host)
Returns a
WriteStream able to send to the
SocketAddress. |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
DatagramSocket.pipeTo(WriteStream<DatagramPacket> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Class and Description |
|---|---|
class |
MessageProducer<T>
Represents a stream of message that can be written to.
|
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
MessageConsumer.pipeTo(WriteStream<Message<T>> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Class and Description |
|---|---|
class |
AsyncFile
Represents a file on the file-system which can be read from, or written to asynchronously.
|
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
AsyncFile.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
WebSocketBase
Base WebSocket implementation.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpClientRequest
Represents a client-side HTTP request.
|
class |
HttpServerResponse
Represents a server-side HTTP response.
|
class |
ServerWebSocket
Represents a server side WebSocket.
|
class |
WebSocket
Represents a client-side WebSocket.
|
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
WebSocket.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
WebSocketBase.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
HttpServerFileUpload.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
HttpClientResponse.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
HttpServerRequest.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
ServerWebSocket.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
HttpClientRequest.pipeTo(WriteStream<HttpClientResponse> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Class and Description |
|---|---|
class |
NetSocket
Represents a socket-like interface to a TCP connection on either the
client or the server side.
|
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
NetSocket.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
RecordParser.pipeTo(WriteStream<Buffer> dst)
Pipe this
ReadStream to the WriteStream. |
CompletionStage<Void> |
JsonParser.pipeTo(WriteStream<JsonEvent> dst)
Pipe this
ReadStream to the WriteStream. |
| Modifier and Type | Method and Description |
|---|---|
WriteStream<T> |
WriteStream.drainHandler(Consumer<Void> handler)
Set a drain handler on the stream.
|
WriteStream<T> |
WriteStream.exceptionHandler(Consumer<Throwable> handler)
Set an exception handler on the write stream.
|
static <T> WriteStream<T> |
WriteStream.newInstance(io.vertx.core.streams.WriteStream arg) |
static <T> WriteStream<T> |
WriteStream.newInstance(io.vertx.core.streams.WriteStream arg,
TypeArg<T> __typeArg_T) |
WriteStream<T> |
WriteStream.setWriteQueueMaxSize(int maxSize)
Set the maximum size of the write queue to
maxSize. |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
ReadStream.pipeTo(WriteStream<T> dst)
Pipe this
ReadStream to the WriteStream. |
static <T> Pump |
Pump.pump(org.reactivestreams.Publisher<T> rs,
WriteStream<T> ws)
Create a new
Pump with the given ReadStream and WriteStream |
static <T> Pump |
Pump.pump(org.reactivestreams.Publisher<T> rs,
WriteStream<T> ws,
int writeQueueMaxSize)
Create a new
Pump with the given ReadStream and WriteStream and
writeQueueMaxSize |
static <T> Pump |
Pump.pump(ReadStream<T> rs,
WriteStream<T> ws)
Create a new
Pump with the given ReadStream and WriteStream |
static <T> Pump |
Pump.pump(ReadStream<T> rs,
WriteStream<T> ws,
int writeQueueMaxSize)
Create a new
Pump with the given ReadStream and WriteStream and
writeQueueMaxSize |
CompletionStage<Void> |
Pipe.to(WriteStream<T> dst)
Start to pipe the elements to the destination
WriteStream. |
Copyright © 2019 SmallRye. All rights reserved.