Uses of Class
io.vertx.reactivex.core.buffer.Buffer
-
-
Uses of Buffer in io.vertx.reactivex.amqp
Methods in io.vertx.reactivex.amqp that return Buffer Modifier and Type Method Description Buffer
AmqpMessage. bodyAsBinary()
Methods in io.vertx.reactivex.amqp with parameters of type Buffer Modifier and Type Method Description AmqpMessageBuilder
AmqpMessageBuilder. withBufferAsBody(Buffer buffer)
-
Uses of Buffer in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return types with arguments of type Buffer Modifier and Type Method Description static <T> io.reactivex.FlowableTransformer<Buffer,T>
FlowableHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef)
static <T> io.reactivex.FlowableTransformer<Buffer,T>
FlowableHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.FlowableTransformer<Buffer,T>
FlowableHelper. unmarshaller(Class<T> mappedType)
static <T> io.reactivex.FlowableTransformer<Buffer,T>
FlowableHelper. unmarshaller(Class<T> mappedType, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.MaybeTransformer<Buffer,T>
MaybeHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef)
static <T> io.reactivex.MaybeTransformer<Buffer,T>
MaybeHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.MaybeTransformer<Buffer,T>
MaybeHelper. unmarshaller(Class<T> mappedType)
static <T> io.reactivex.MaybeTransformer<Buffer,T>
MaybeHelper. unmarshaller(Class<T> mappedType, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.ObservableTransformer<Buffer,T>
ObservableHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef)
static <T> io.reactivex.ObservableTransformer<Buffer,T>
ObservableHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.ObservableTransformer<Buffer,T>
ObservableHelper. unmarshaller(Class<T> mappedType)
static <T> io.reactivex.ObservableTransformer<Buffer,T>
ObservableHelper. unmarshaller(Class<T> mappedType, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.SingleTransformer<Buffer,T>
SingleHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef)
static <T> io.reactivex.SingleTransformer<Buffer,T>
SingleHelper. unmarshaller(com.fasterxml.jackson.core.type.TypeReference<T> mappedTypeRef, com.fasterxml.jackson.core.ObjectCodec mapper)
static <T> io.reactivex.SingleTransformer<Buffer,T>
SingleHelper. unmarshaller(Class<T> mappedType)
static <T> io.reactivex.SingleTransformer<Buffer,T>
SingleHelper. unmarshaller(Class<T> mappedType, com.fasterxml.jackson.core.ObjectCodec mapper)
-
Uses of Buffer in io.vertx.reactivex.core.buffer
Fields in io.vertx.reactivex.core.buffer with type parameters of type Buffer Modifier and Type Field Description static TypeArg<Buffer>
Buffer. __TYPE_ARG
Methods in io.vertx.reactivex.core.buffer that return Buffer Modifier and Type Method Description Buffer
Buffer. appendBuffer(Buffer buff)
Appends the specifiedBuffer
to the end of this Buffer.Buffer
Buffer. appendBuffer(Buffer buff, int offset, int len)
Appends the specifiedBuffer
starting at theoffset
usinglen
to the end of this Buffer.Buffer
Buffer. appendByte(byte b)
Appends the specifiedbyte
to the end of the Buffer.Buffer
Buffer. appendBytes(byte[] bytes)
Appends the specifiedbyte[]
to the end of the Buffer.Buffer
Buffer. appendBytes(byte[] bytes, int offset, int len)
Appends the specified number of bytes frombyte[]
to the end of the Buffer, starting at the given offset.Buffer
Buffer. appendDouble(double d)
Appends the specifieddouble
to the end of the Buffer.Buffer
Buffer. appendFloat(float f)
Appends the specifiedfloat
to the end of the Buffer.Buffer
Buffer. appendInt(int i)
Appends the specifiedint
to the end of the Buffer.Buffer
Buffer. appendIntLE(int i)
Appends the specifiedint
to the end of the Buffer in the Little Endian Byte Order.Buffer
Buffer. appendLong(long l)
Appends the specifiedlong
to the end of the Buffer.Buffer
Buffer. appendLongLE(long l)
Appends the specifiedlong
to the end of the Buffer in the Little Endian Byte Order.Buffer
Buffer. appendMedium(int i)
Appends the specified 24bitint
to the end of the Buffer.Buffer
Buffer. appendMediumLE(int i)
Appends the specified 24bitint
to the end of the Buffer in the Little Endian Byte Order.Buffer
Buffer. appendShort(short s)
Appends the specifiedshort
to the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written.Buffer
Buffer. appendShortLE(short s)
Appends the specifiedshort
to the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.Buffer
Buffer. appendString(String str)
Appends the specifiedString str
to the end of the Buffer with UTF-8 encoding.Buffer
Buffer. appendString(String str, String enc)
Appends the specifiedString
to the end of the Buffer with the encoding as specified byenc
.Buffer
Buffer. appendUnsignedByte(short b)
Appends the specified unsignedbyte
to the end of the Buffer.Buffer
Buffer. appendUnsignedInt(long i)
Appends the specified unsignedint
to the end of the Buffer.Buffer
Buffer. appendUnsignedIntLE(long i)
Appends the specified unsignedint
to the end of the Buffer in the Little Endian Byte Order.Buffer
Buffer. appendUnsignedShort(int s)
Appends the specified unsignedshort
to the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written.Buffer
Buffer. appendUnsignedShortLE(int s)
Appends the specified unsignedshort
to the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.static Buffer
Buffer. buffer()
Create a new, empty buffer.static Buffer
Buffer. buffer(byte[] bytes)
Create a new buffer from a byte[].static Buffer
Buffer. buffer(int initialSizeHint)
Create a new buffer given the initial size hint.static Buffer
Buffer. buffer(io.netty.buffer.ByteBuf byteBuf)
Deprecated.static Buffer
Buffer. buffer(String string)
Create a new buffer from a string.static Buffer
Buffer. buffer(String string, String enc)
Create a new buffer from a string and using the specified encoding.Buffer
Buffer. copy()
Returns a copy of the entire Buffer.Buffer
Buffer. getBuffer(int start, int end)
Returns a copy of a sub-sequence the Buffer as aBuffer
starting at positionstart
and ending at positionend - 1
Buffer
Buffer. getBytes(byte[] dst)
Transfers the content of the Buffer into abyte[]
.Buffer
Buffer. getBytes(byte[] dst, int dstIndex)
Transfers the content of the Buffer into abyte[]
at the specific destination.Buffer
Buffer. getBytes(int start, int end, byte[] dst)
Transfers the content of the Buffer starting at positionstart
and ending at positionend - 1
into abyte[]
.Buffer
Buffer. getBytes(int start, int end, byte[] dst, int dstIndex)
Transfers the content of the Buffer starting at positionstart
and ending at positionend - 1
into abyte[]
at the specific destination.static Buffer
Buffer. newInstance(Buffer arg)
Buffer
Buffer. setBuffer(int pos, Buffer b)
Sets the bytes at positionpos
in the Buffer to the bytes represented by theBuffer b
.Buffer
Buffer. setBuffer(int pos, Buffer b, int offset, int len)
Sets the bytes at positionpos
in the Buffer to the bytes represented by theBuffer b
on the givenoffset
andlen
.Buffer
Buffer. setByte(int pos, byte b)
Sets thebyte
at positionpos
in the Buffer to the valueb
.Buffer
Buffer. setBytes(int pos, byte[] b)
Sets the bytes at positionpos
in the Buffer to the bytes represented by thebyte[] b
.Buffer
Buffer. setBytes(int pos, byte[] b, int offset, int len)
Sets the given number of bytes at positionpos
in the Buffer to the bytes represented by thebyte[] b
.Buffer
Buffer. setBytes(int pos, ByteBuffer b)
Sets the bytes at positionpos
in the Buffer to the bytes represented by theByteBuffer b
.Buffer
Buffer. setDouble(int pos, double d)
Sets thedouble
at positionpos
in the Buffer to the valued
.Buffer
Buffer. setFloat(int pos, float f)
Sets thefloat
at positionpos
in the Buffer to the valuef
.Buffer
Buffer. setInt(int pos, int i)
Sets theint
at positionpos
in the Buffer to the valuei
.Buffer
Buffer. setIntLE(int pos, int i)
Sets theint
at positionpos
in the Buffer to the valuei
in the Little Endian Byte Order.Buffer
Buffer. setLong(int pos, long l)
Sets thelong
at positionpos
in the Buffer to the valuel
.Buffer
Buffer. setLongLE(int pos, long l)
Sets thelong
at positionpos
in the Buffer to the valuel
in the Little Endian Byte Order.Buffer
Buffer. setMedium(int pos, int i)
Sets the 24bitint
at positionpos
in the Buffer to the valuei
.Buffer
Buffer. setMediumLE(int pos, int i)
Sets the 24bitint
at positionpos
in the Buffer to the valuei
.Buffer
Buffer. setShort(int pos, short s)
Sets theshort
at positionpos
in the Buffer to the values
.Buffer
Buffer. setShortLE(int pos, short s)
Sets theshort
at positionpos
in the Buffer to the values
in the Little Endian Byte Order.Buffer
Buffer. setString(int pos, String str)
Sets the bytes at positionpos
in the Buffer to the value ofstr
encoded in UTF-8.Buffer
Buffer. setString(int pos, String str, String enc)
Sets the bytes at positionpos
in the Buffer to the value ofstr
encoded in encodingenc
.Buffer
Buffer. setUnsignedByte(int pos, short b)
Sets the unsignedbyte
at positionpos
in the Buffer to the valueb
.Buffer
Buffer. setUnsignedInt(int pos, long i)
Sets the unsignedint
at positionpos
in the Buffer to the valuei
.Buffer
Buffer. setUnsignedIntLE(int pos, long i)
Sets the unsignedint
at positionpos
in the Buffer to the valuei
in the Little Endian Byte Order.Buffer
Buffer. setUnsignedShort(int pos, int s)
Sets the unsignedshort
at positionpos
in the Buffer to the values
.Buffer
Buffer. setUnsignedShortLE(int pos, int s)
Sets the unsignedshort
at positionpos
in the Buffer to the values
in the Little Endian Byte Order.Buffer
Buffer. slice()
Returns a slice of this buffer.Buffer
Buffer. slice(int start, int end)
Returns a slice of this buffer.Methods in io.vertx.reactivex.core.buffer with parameters of type Buffer Modifier and Type Method Description Buffer
Buffer. appendBuffer(Buffer buff)
Appends the specifiedBuffer
to the end of this Buffer.Buffer
Buffer. appendBuffer(Buffer buff, int offset, int len)
Appends the specifiedBuffer
starting at theoffset
usinglen
to the end of this Buffer.Buffer
Buffer. setBuffer(int pos, Buffer b)
Sets the bytes at positionpos
in the Buffer to the bytes represented by theBuffer b
.Buffer
Buffer. setBuffer(int pos, Buffer b, int offset, int len)
Sets the bytes at positionpos
in the Buffer to the bytes represented by theBuffer b
on the givenoffset
andlen
. -
Uses of Buffer in io.vertx.reactivex.core.datagram
Methods in io.vertx.reactivex.core.datagram that return Buffer Modifier and Type Method Description Buffer
DatagramPacket. data()
Returns the data of theDatagramPacket
Methods in io.vertx.reactivex.core.datagram that return types with arguments of type Buffer Modifier and Type Method Description WriteStream<Buffer>
DatagramSocket. sender(int port, String host)
Returns aWriteStream
able to send to theSocketAddress
.Methods in io.vertx.reactivex.core.datagram with parameters of type Buffer Modifier and Type Method Description io.reactivex.Completable
DatagramSocket. rxSend(Buffer packet, int port, String host)
Write the givenBuffer
to theSocketAddress
.DatagramSocket
DatagramSocket. send(Buffer packet, int port, String host)
Write the givenBuffer
to theSocketAddress
.DatagramSocket
DatagramSocket. send(Buffer packet, int port, String host, Handler<AsyncResult<Void>> handler)
Write the givenBuffer
to theSocketAddress
. -
Uses of Buffer in io.vertx.reactivex.core.file
Methods in io.vertx.reactivex.core.file that return Buffer Modifier and Type Method Description Buffer
FileSystem. readFileBlocking(String path)
Methods in io.vertx.reactivex.core.file that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>
AsyncFile. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.Single<Buffer>
AsyncFile. rxRead(Buffer buffer, int offset, long position, int length)
Readslength
bytes of data from the file at positionposition
in the file, asynchronously.io.reactivex.Single<Buffer>
FileSystem. rxReadFile(String path)
Reads the entire file as represented by the pathpath
as a , asynchronously.io.reactivex.Flowable<Buffer>
AsyncFile. toFlowable()
io.reactivex.Observable<Buffer>
AsyncFile. toObservable()
WriteStreamObserver<Buffer>
AsyncFile. toObserver()
WriteStreamSubscriber<Buffer>
AsyncFile. toSubscriber()
Methods in io.vertx.reactivex.core.file with parameters of type Buffer Modifier and Type Method Description void
AsyncFile. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
AsyncFile. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesAsyncFile
AsyncFile. read(Buffer buffer, int offset, long position, int length)
Readslength
bytes of data from the file at positionposition
in the file, asynchronously.AsyncFile
AsyncFile. read(Buffer buffer, int offset, long position, int length, Handler<AsyncResult<Buffer>> handler)
Readslength
bytes of data from the file at positionposition
in the file, asynchronously.io.reactivex.Completable
AsyncFile. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Single<Buffer>
AsyncFile. rxRead(Buffer buffer, int offset, long position, int length)
Readslength
bytes of data from the file at positionposition
in the file, asynchronously.io.reactivex.Completable
AsyncFile. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
AsyncFile. rxWrite(Buffer buffer, long position)
Write aBuffer
to the file at positionposition
in the file, asynchronously.io.reactivex.Completable
FileSystem. rxWriteFile(String path, Buffer data)
Creates the file, and writes the specifiedBuffer data
to the file represented by the pathpath
, asynchronously.void
AsyncFile. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
AsyncFile. write(Buffer buffer, long position)
Write aBuffer
to the file at positionposition
in the file, asynchronously.void
AsyncFile. write(Buffer buffer, long position, Handler<AsyncResult<Void>> handler)
Write aBuffer
to the file at positionposition
in the file, asynchronously.void
AsyncFile. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesFileSystem
FileSystem. writeFile(String path, Buffer data)
Creates the file, and writes the specifiedBuffer data
to the file represented by the pathpath
, asynchronously.FileSystem
FileSystem. writeFile(String path, Buffer data, Handler<AsyncResult<Void>> handler)
Creates the file, and writes the specifiedBuffer data
to the file represented by the pathpath
, asynchronously.FileSystem
FileSystem. writeFileBlocking(String path, Buffer data)
Method parameters in io.vertx.reactivex.core.file with type arguments of type Buffer Modifier and Type Method Description AsyncFile
AsyncFile. handler(Handler<Buffer> handler)
void
AsyncFile. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
AsyncFile. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.AsyncFile
AsyncFile. read(Buffer buffer, int offset, long position, int length, Handler<AsyncResult<Buffer>> handler)
Readslength
bytes of data from the file at positionposition
in the file, asynchronously.FileSystem
FileSystem. readFile(String path, Handler<AsyncResult<Buffer>> handler)
Reads the entire file as represented by the pathpath
as a , asynchronously.io.reactivex.Completable
AsyncFile. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
. -
Uses of Buffer in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return Buffer Modifier and Type Method Description Buffer
WebSocketFrame. binaryData()
Buffer
HttpFrame. payload()
Methods in io.vertx.reactivex.core.http that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>
ClientWebSocket. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
HttpClientResponse. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
HttpServerFileUpload. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
HttpServerRequest. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
ServerWebSocket. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
WebSocket. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Pipe<Buffer>
WebSocketBase. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.Single<Buffer>
HttpClientResponse. rxBody()
Same asHttpClientResponse.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)
but with anhandler
called when the operation completesio.reactivex.Single<Buffer>
HttpConnection. rxPing(Buffer data)
Send a frame to the remote endpoint.io.reactivex.Flowable<Buffer>
ClientWebSocket. toFlowable()
io.reactivex.Flowable<Buffer>
HttpClientResponse. toFlowable()
io.reactivex.Flowable<Buffer>
HttpServerFileUpload. toFlowable()
io.reactivex.Flowable<Buffer>
HttpServerRequest. toFlowable()
io.reactivex.Flowable<Buffer>
ServerWebSocket. toFlowable()
io.reactivex.Flowable<Buffer>
WebSocket. toFlowable()
io.reactivex.Observable<Buffer>
ClientWebSocket. toObservable()
io.reactivex.Observable<Buffer>
HttpClientResponse. toObservable()
io.reactivex.Observable<Buffer>
HttpServerFileUpload. toObservable()
io.reactivex.Observable<Buffer>
HttpServerRequest. toObservable()
io.reactivex.Observable<Buffer>
ServerWebSocket. toObservable()
io.reactivex.Observable<Buffer>
WebSocket. toObservable()
WriteStreamObserver<Buffer>
ClientWebSocket. toObserver()
WriteStreamObserver<Buffer>
HttpClientRequest. toObserver()
WriteStreamObserver<Buffer>
HttpServerResponse. toObserver()
WriteStreamObserver<Buffer>
ServerWebSocket. toObserver()
WriteStreamObserver<Buffer>
WebSocket. toObserver()
WriteStreamSubscriber<Buffer>
ClientWebSocket. toSubscriber()
WriteStreamSubscriber<Buffer>
HttpClientRequest. toSubscriber()
WriteStreamSubscriber<Buffer>
HttpServerResponse. toSubscriber()
WriteStreamSubscriber<Buffer>
ServerWebSocket. toSubscriber()
WriteStreamSubscriber<Buffer>
WebSocket. toSubscriber()
Methods in io.vertx.reactivex.core.http with parameters of type Buffer Modifier and Type Method Description static WebSocketFrame
WebSocketFrame. binaryFrame(Buffer data, boolean isFinal)
Create a binary WebSocket frame.static WebSocketFrame
WebSocketFrame. continuationFrame(Buffer data, boolean isFinal)
Create a continuation framevoid
ClientWebSocket. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
ClientWebSocket. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
HttpClientRequest. end(Buffer chunk)
Same asHttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesvoid
HttpClientRequest. end(Buffer chunk, Handler<AsyncResult<Void>> handler)
Same asHttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesvoid
HttpServerResponse. end(Buffer chunk)
Same asHttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesvoid
HttpServerResponse. end(Buffer chunk, Handler<AsyncResult<Void>> handler)
Same asHttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesvoid
ServerWebSocket. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
ServerWebSocket. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
WebSocket. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
WebSocket. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
WebSocketBase. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
WebSocketBase. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesHttpConnection
HttpConnection. goAway(long errorCode, int lastStreamId, Buffer debugData)
Send a go away frame to the remote endpoint of the connection.HttpConnection
HttpConnection. ping(Buffer data)
Send a frame to the remote endpoint.HttpConnection
HttpConnection. ping(Buffer data, Handler<AsyncResult<Buffer>> pongHandler)
Send a frame to the remote endpoint.static WebSocketFrame
WebSocketFrame. pingFrame(Buffer data)
Create a ping WebSocket frame.static WebSocketFrame
WebSocketFrame. pongFrame(Buffer data)
Create a pong WebSocket frame.io.reactivex.Completable
ClientWebSocket. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
HttpClientRequest. rxEnd(Buffer chunk)
Same asHttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesio.reactivex.Completable
HttpServerResponse. rxEnd(Buffer chunk)
Same asHttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesio.reactivex.Completable
ServerWebSocket. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
WebSocket. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
WebSocketBase. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Single<Buffer>
HttpConnection. rxPing(Buffer data)
Send a frame to the remote endpoint.io.reactivex.Single<HttpClientResponse>
HttpClientRequest. rxSend(Buffer body)
Send the request with a bufferbody
.io.reactivex.Completable
HttpServerResponse. rxSend(Buffer body)
Send the request with a bufferbody
.io.reactivex.Completable
ClientWebSocket. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
HttpClientRequest. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
HttpServerResponse. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
ServerWebSocket. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
WebSocket. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
WebSocketBase. rxWrite(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
ClientWebSocket. rxWriteBinaryMessage(Buffer data)
io.reactivex.Completable
ServerWebSocket. rxWriteBinaryMessage(Buffer data)
io.reactivex.Completable
WebSocket. rxWriteBinaryMessage(Buffer data)
io.reactivex.Completable
WebSocketBase. rxWriteBinaryMessage(Buffer data)
Same asWebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesio.reactivex.Completable
ClientWebSocket. rxWriteFinalBinaryFrame(Buffer data)
io.reactivex.Completable
ServerWebSocket. rxWriteFinalBinaryFrame(Buffer data)
io.reactivex.Completable
WebSocket. rxWriteFinalBinaryFrame(Buffer data)
io.reactivex.Completable
WebSocketBase. rxWriteFinalBinaryFrame(Buffer data)
Same asWebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesio.reactivex.Completable
ClientWebSocket. rxWritePing(Buffer data)
io.reactivex.Completable
ServerWebSocket. rxWritePing(Buffer data)
io.reactivex.Completable
WebSocket. rxWritePing(Buffer data)
io.reactivex.Completable
WebSocketBase. rxWritePing(Buffer data)
Writes a ping frame to the connection.io.reactivex.Completable
ClientWebSocket. rxWritePong(Buffer data)
io.reactivex.Completable
ServerWebSocket. rxWritePong(Buffer data)
io.reactivex.Completable
WebSocket. rxWritePong(Buffer data)
io.reactivex.Completable
WebSocketBase. rxWritePong(Buffer data)
Writes a pong frame to the connection.void
HttpClientRequest. send(Buffer body)
Send the request with a bufferbody
.void
HttpClientRequest. send(Buffer body, Handler<AsyncResult<HttpClientResponse>> handler)
Send the request with a bufferbody
.void
HttpServerResponse. send(Buffer body)
Send the request with a bufferbody
.void
HttpServerResponse. send(Buffer body, Handler<AsyncResult<Void>> handler)
Send the request with a bufferbody
.void
ClientWebSocket. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
ClientWebSocket. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
HttpClientRequest. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
HttpClientRequest. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
HttpServerResponse. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
HttpServerResponse. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
ServerWebSocket. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
ServerWebSocket. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
WebSocket. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
WebSocket. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesvoid
WebSocketBase. write(Buffer data)
Same as but with anhandler
called when the operation completesvoid
WebSocketBase. write(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesClientWebSocket
ClientWebSocket. writeBinaryMessage(Buffer data)
ClientWebSocket
ClientWebSocket. writeBinaryMessage(Buffer data, Handler<AsyncResult<Void>> handler)
ServerWebSocket
ServerWebSocket. writeBinaryMessage(Buffer data)
ServerWebSocket
ServerWebSocket. writeBinaryMessage(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocket
WebSocket. writeBinaryMessage(Buffer data)
WebSocket
WebSocket. writeBinaryMessage(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocketBase
WebSocketBase. writeBinaryMessage(Buffer data)
Same asWebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesWebSocketBase
WebSocketBase. writeBinaryMessage(Buffer data, Handler<AsyncResult<Void>> handler)
Same asWebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesHttpClientRequest
HttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)
Write an HTTP/2 frame to the request, allowing to extend the HTTP/2 protocol.HttpServerResponse
HttpServerResponse. writeCustomFrame(int type, int flags, Buffer payload)
Write an HTTP/2 frame to the response, allowing to extend the HTTP/2 protocol.ClientWebSocket
ClientWebSocket. writeFinalBinaryFrame(Buffer data)
ClientWebSocket
ClientWebSocket. writeFinalBinaryFrame(Buffer data, Handler<AsyncResult<Void>> handler)
ServerWebSocket
ServerWebSocket. writeFinalBinaryFrame(Buffer data)
ServerWebSocket
ServerWebSocket. writeFinalBinaryFrame(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocket
WebSocket. writeFinalBinaryFrame(Buffer data)
WebSocket
WebSocket. writeFinalBinaryFrame(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocketBase
WebSocketBase. writeFinalBinaryFrame(Buffer data)
Same asWebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesWebSocketBase
WebSocketBase. writeFinalBinaryFrame(Buffer data, Handler<AsyncResult<Void>> handler)
Same asWebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the operation completesClientWebSocket
ClientWebSocket. writePing(Buffer data)
ClientWebSocket
ClientWebSocket. writePing(Buffer data, Handler<AsyncResult<Void>> handler)
ServerWebSocket
ServerWebSocket. writePing(Buffer data)
ServerWebSocket
ServerWebSocket. writePing(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocket
WebSocket. writePing(Buffer data)
WebSocket
WebSocket. writePing(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocketBase
WebSocketBase. writePing(Buffer data)
Writes a ping frame to the connection.WebSocketBase
WebSocketBase. writePing(Buffer data, Handler<AsyncResult<Void>> handler)
Writes a ping frame to the connection.ClientWebSocket
ClientWebSocket. writePong(Buffer data)
ClientWebSocket
ClientWebSocket. writePong(Buffer data, Handler<AsyncResult<Void>> handler)
ServerWebSocket
ServerWebSocket. writePong(Buffer data)
ServerWebSocket
ServerWebSocket. writePong(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocket
WebSocket. writePong(Buffer data)
WebSocket
WebSocket. writePong(Buffer data, Handler<AsyncResult<Void>> handler)
WebSocketBase
WebSocketBase. writePong(Buffer data)
Writes a pong frame to the connection.WebSocketBase
WebSocketBase. writePong(Buffer data, Handler<AsyncResult<Void>> handler)
Writes a pong frame to the connection.Method parameters in io.vertx.reactivex.core.http with type arguments of type Buffer Modifier and Type Method Description ClientWebSocket
ClientWebSocket. binaryMessageHandler(Handler<Buffer> handler)
WebSocketBase
ServerWebSocket. binaryMessageHandler(Handler<Buffer> handler)
Set a binary message handler on the connection.WebSocketBase
WebSocket. binaryMessageHandler(Handler<Buffer> handler)
Set a binary message handler on the connection.WebSocketBase
WebSocketBase. binaryMessageHandler(Handler<Buffer> handler)
Set a binary message handler on the connection.HttpClientResponse
HttpClientResponse. body(Handler<AsyncResult<Buffer>> handler)
Same asHttpClientResponse.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)
but with anhandler
called when the operation completesHttpServerRequest
HttpServerRequest. body(Handler<AsyncResult<Buffer>> handler)
Same asHttpServerRequest.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)
but with anhandler
called when the operation completesHttpClientResponse
HttpClientResponse. bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.HttpServerRequest
HttpServerRequest. bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.ClientWebSocket
ClientWebSocket. handler(Handler<Buffer> handler)
HttpClientResponse
HttpClientResponse. handler(Handler<Buffer> handler)
HttpServerFileUpload
HttpServerFileUpload. handler(Handler<Buffer> handler)
HttpServerRequest
HttpServerRequest. handler(Handler<Buffer> handler)
ServerWebSocket
ServerWebSocket. handler(Handler<Buffer> handler)
WebSocket
WebSocket. handler(Handler<Buffer> handler)
WebSocketBase
WebSocketBase. handler(Handler<Buffer> handler)
HttpConnection
HttpConnection. ping(Buffer data, Handler<AsyncResult<Buffer>> pongHandler)
Send a frame to the remote endpoint.HttpConnection
HttpConnection. pingHandler(Handler<Buffer> handler)
Set an handler notified when a frame is received from the remote endpoint.void
ClientWebSocket. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
ClientWebSocket. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
HttpClientResponse. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
HttpClientResponse. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
HttpServerFileUpload. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
HttpServerFileUpload. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
HttpServerRequest. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
HttpServerRequest. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
ServerWebSocket. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
ServerWebSocket. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
WebSocket. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
WebSocket. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.void
WebSocketBase. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
WebSocketBase. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.ClientWebSocket
ClientWebSocket. pongHandler(Handler<Buffer> handler)
WebSocketBase
ServerWebSocket. pongHandler(Handler<Buffer> handler)
Set a pong frame handler on the connection.WebSocketBase
WebSocket. pongHandler(Handler<Buffer> handler)
Set a pong frame handler on the connection.WebSocketBase
WebSocketBase. pongHandler(Handler<Buffer> handler)
Set a pong frame handler on the connection.io.reactivex.Completable
ClientWebSocket. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
HttpClientResponse. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
HttpServerFileUpload. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
HttpServerRequest. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
ServerWebSocket. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
WebSocket. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
WebSocketBase. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Single<HttpClientResponse>
HttpClientRequest. rxSend(io.reactivex.Flowable<Buffer> body)
Send the request with a streambody
.io.reactivex.Single<HttpClientResponse>
HttpClientRequest. rxSend(ReadStream<Buffer> body)
Send the request with a streambody
.io.reactivex.Completable
HttpServerResponse. rxSend(io.reactivex.Flowable<Buffer> body)
Send the request with a streambody
.io.reactivex.Completable
HttpServerResponse. rxSend(ReadStream<Buffer> body)
Send the request with a streambody
.void
HttpClientRequest. send(io.reactivex.Flowable<Buffer> body)
Send the request with a streambody
.void
HttpClientRequest. send(io.reactivex.Flowable<Buffer> body, Handler<AsyncResult<HttpClientResponse>> handler)
Send the request with a streambody
.void
HttpClientRequest. send(ReadStream<Buffer> body)
Send the request with a streambody
.void
HttpClientRequest. send(ReadStream<Buffer> body, Handler<AsyncResult<HttpClientResponse>> handler)
Send the request with a streambody
.void
HttpServerResponse. send(io.reactivex.Flowable<Buffer> body)
Send the request with a streambody
.void
HttpServerResponse. send(io.reactivex.Flowable<Buffer> body, Handler<AsyncResult<Void>> handler)
Send the request with a streambody
.void
HttpServerResponse. send(ReadStream<Buffer> body)
Send the request with a streambody
.void
HttpServerResponse. send(ReadStream<Buffer> body, Handler<AsyncResult<Void>> handler)
Send the request with a streambody
. -
Uses of Buffer in io.vertx.reactivex.core.net
Methods in io.vertx.reactivex.core.net that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>
NetSocket. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.Flowable<Buffer>
NetSocket. toFlowable()
io.reactivex.Observable<Buffer>
NetSocket. toObservable()
WriteStreamObserver<Buffer>
NetSocket. toObserver()
WriteStreamSubscriber<Buffer>
NetSocket. toSubscriber()
Methods in io.vertx.reactivex.core.net with parameters of type Buffer Modifier and Type Method Description void
NetSocket. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
NetSocket. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
NetSocket. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
NetSocket. rxWrite(Buffer message)
LikeWriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the message has been written or failed to be written.void
NetSocket. write(Buffer message)
LikeWriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the message has been written or failed to be written.void
NetSocket. write(Buffer message, Handler<AsyncResult<Void>> handler)
LikeWriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)
but with anhandler
called when the message has been written or failed to be written.Method parameters in io.vertx.reactivex.core.net with type arguments of type Buffer Modifier and Type Method Description NetSocket
NetSocket. handler(Handler<Buffer> handler)
void
NetSocket. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
NetSocket. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
NetSocket. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
. -
Uses of Buffer in io.vertx.reactivex.core.parsetools
Methods in io.vertx.reactivex.core.parsetools that return Buffer Modifier and Type Method Description Buffer
JsonEvent. binaryValue()
Return the binary value.Methods in io.vertx.reactivex.core.parsetools that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>
RecordParser. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.Flowable<Buffer>
RecordParser. toFlowable()
io.reactivex.Observable<Buffer>
RecordParser. toObservable()
Methods in io.vertx.reactivex.core.parsetools with parameters of type Buffer Modifier and Type Method Description void
RecordParser. delimitedMode(Buffer delim)
Flip the parser into delimited mode, and where the delimiter can be represented by the delimiterdelim
.void
JsonParser. handle(Buffer event)
Something has happened, so handle it.void
RecordParser. handle(Buffer buffer)
This method is called to provide the parser with data.static RecordParser
RecordParser. newDelimited(Buffer delim)
Create a newRecordParser
instance, initially in delimited mode, and where the delimiter can be represented by theBuffer
delim.static RecordParser
RecordParser. newDelimited(Buffer delim, io.reactivex.Flowable<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.static RecordParser
RecordParser. newDelimited(Buffer delim, Handler<Buffer> output)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.JsonParser
JsonParser. write(Buffer buffer)
Handle aBuffer
, pretty much like callingHandler
.Method parameters in io.vertx.reactivex.core.parsetools with type arguments of type Buffer Modifier and Type Method Description RecordParser
RecordParser. handler(Handler<Buffer> handler)
static RecordParser
RecordParser. newDelimited(Buffer delim, io.reactivex.Flowable<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.static RecordParser
RecordParser. newDelimited(Buffer delim, Handler<Buffer> output)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.static RecordParser
RecordParser. newDelimited(String delim, io.reactivex.Flowable<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.static RecordParser
RecordParser. newDelimited(String delim, Handler<Buffer> output)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newDelimited(String delim, ReadStream<Buffer> stream)
LikeRecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)
but wraps thestream
.static RecordParser
RecordParser. newFixed(int size, io.reactivex.Flowable<Buffer> stream)
LikeRecordParser.newFixed(int)
but wraps thestream
.static RecordParser
RecordParser. newFixed(int size, Handler<Buffer> output)
LikeRecordParser.newFixed(int)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newFixed(int size, ReadStream<Buffer> stream)
LikeRecordParser.newFixed(int)
but wraps thestream
.static JsonParser
JsonParser. newParser(io.reactivex.Flowable<Buffer> stream)
Create a newJsonParser
instance.static JsonParser
JsonParser. newParser(ReadStream<Buffer> stream)
Create a newJsonParser
instance.void
RecordParser. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
RecordParser. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
RecordParser. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
RecordParser. setOutput(Handler<Buffer> output)
-
Uses of Buffer in io.vertx.reactivex.ext.mail
Methods in io.vertx.reactivex.ext.mail that return Buffer Modifier and Type Method Description Buffer
MailAttachment. getData()
get the dataMethods in io.vertx.reactivex.ext.mail that return types with arguments of type Buffer Modifier and Type Method Description ReadStream<Buffer>
MailAttachment. getStream()
Gets the data stream.Methods in io.vertx.reactivex.ext.mail with parameters of type Buffer Modifier and Type Method Description MailAttachment
MailAttachment. setData(Buffer data)
set the dataMethod parameters in io.vertx.reactivex.ext.mail with type arguments of type Buffer Modifier and Type Method Description MailAttachment
MailAttachment. setStream(io.reactivex.Flowable<Buffer> stream)
Sets the data stream.MailAttachment
MailAttachment. setStream(ReadStream<Buffer> stream)
Sets the data stream. -
Uses of Buffer in io.vertx.reactivex.ext.mongo
Methods in io.vertx.reactivex.ext.mongo that return types with arguments of type Buffer Modifier and Type Method Description ReadStream<Buffer>
MongoGridFsClient. readByFileName(String fileName)
Read file by name to ReadStreamReadStream<Buffer>
MongoGridFsClient. readByFileNameWithOptions(String fileName, GridFsDownloadOptions options)
Read file by name to ReadStream with optionsReadStream<Buffer>
MongoGridFsClient. readById(String id)
Read file by id to ReadStream -
Uses of Buffer in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp with parameters of type Buffer Modifier and Type Method Description io.reactivex.Single<Frame>
StompClientConnection. rxSend(String destination, Buffer body)
Sends aSEND
frame to the server to the given destination.io.reactivex.Single<Frame>
StompClientConnection. rxSend(String destination, Map<String,String> headers, Buffer body)
Sends aSEND
frame to the server to the given destination.io.reactivex.Single<Frame>
StompClientConnection. rxSend(Map<String,String> headers, Buffer body)
Sends aSEND
frame to the server.StompClientConnection
StompClientConnection. send(String destination, Buffer body)
Sends aSEND
frame to the server to the given destination.StompClientConnection
StompClientConnection. send(String destination, Buffer body, Handler<AsyncResult<Frame>> receiptHandler)
Sends aSEND
frame to the server to the given destination.StompClientConnection
StompClientConnection. send(String destination, Map<String,String> headers, Buffer body)
Sends aSEND
frame to the server to the given destination.StompClientConnection
StompClientConnection. send(String destination, Map<String,String> headers, Buffer body, Handler<AsyncResult<Frame>> receiptHandler)
Sends aSEND
frame to the server to the given destination.StompClientConnection
StompClientConnection. send(Map<String,String> headers, Buffer body)
Sends aSEND
frame to the server.StompClientConnection
StompClientConnection. send(Map<String,String> headers, Buffer body, Handler<AsyncResult<Frame>> receiptHandler)
Sends aSEND
frame to the server.StompServerConnection
StompServerConnection. write(Buffer buffer)
Writes the given buffer to the socket. -
Uses of Buffer in io.vertx.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return Buffer Modifier and Type Method Description Buffer
RequestBody. buffer()
Buffer
RoutingContext. getBody()
Deprecated.Methods in io.vertx.reactivex.ext.web with parameters of type Buffer Modifier and Type Method Description RoutingContext
RoutingContext. end(Buffer buffer)
RoutingContext
RoutingContext. end(Buffer buffer, Handler<AsyncResult<Void>> handler)
io.reactivex.Completable
RoutingContext. rxEnd(Buffer buffer)
void
RoutingContext. setBody(Buffer body)
Deprecated. -
Uses of Buffer in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client that return Buffer Modifier and Type Method Description Buffer
HttpResponse. bodyAsBuffer()
Methods in io.vertx.reactivex.ext.web.client that return types with arguments of type Buffer Modifier and Type Method Description HttpRequest<Buffer>
WebClient. delete(int port, String host, UriTemplate requestURI)
Create an HTTP DELETE request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. delete(int port, String host, String requestURI)
Create an HTTP DELETE request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. delete(UriTemplate requestURI)
Create an HTTP DELETE request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. delete(String requestURI)
Create an HTTP DELETE request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. delete(String host, UriTemplate requestURI)
Create an HTTP DELETE request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. delete(String host, String requestURI)
Create an HTTP DELETE request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. deleteAbs(UriTemplate absoluteURI)
Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. deleteAbs(String absoluteURI)
Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. get(int port, String host, UriTemplate requestURI)
Create an HTTP GET request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. get(int port, String host, String requestURI)
Create an HTTP GET request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. get(UriTemplate requestURI)
Create an HTTP GET request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. get(String requestURI)
Create an HTTP GET request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. get(String host, UriTemplate requestURI)
Create an HTTP GET request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. get(String host, String requestURI)
Create an HTTP GET request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. getAbs(UriTemplate absoluteURI)
Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. getAbs(String absoluteURI)
Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. head(int port, String host, UriTemplate requestURI)
Create an HTTP HEAD request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. head(int port, String host, String requestURI)
Create an HTTP HEAD request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. head(UriTemplate requestURI)
Create an HTTP HEAD request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. head(String requestURI)
Create an HTTP HEAD request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. head(String host, UriTemplate requestURI)
Create an HTTP HEAD request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. head(String host, String requestURI)
Create an HTTP HEAD request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. headAbs(UriTemplate absoluteURI)
Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. headAbs(String absoluteURI)
Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. patch(int port, String host, UriTemplate requestURI)
Create an HTTP PATCH request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. patch(int port, String host, String requestURI)
Create an HTTP PATCH request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. patch(UriTemplate requestURI)
Create an HTTP PATCH request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. patch(String requestURI)
Create an HTTP PATCH request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. patch(String host, UriTemplate requestURI)
Create an HTTP PATCH request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. patch(String host, String requestURI)
Create an HTTP PATCH request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. patchAbs(UriTemplate absoluteURI)
Create an HTTP PATCH request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. patchAbs(String absoluteURI)
Create an HTTP PATCH request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. post(int port, String host, UriTemplate requestURI)
Create an HTTP POST request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. post(int port, String host, String requestURI)
Create an HTTP POST request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. post(UriTemplate requestURI)
Create an HTTP POST request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. post(String requestURI)
Create an HTTP POST request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. post(String host, UriTemplate requestURI)
Create an HTTP POST request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. post(String host, String requestURI)
Create an HTTP POST request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. postAbs(UriTemplate absoluteURI)
Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. postAbs(String absoluteURI)
Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. put(int port, String host, UriTemplate requestURI)
Create an HTTP PUT request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. put(int port, String host, String requestURI)
Create an HTTP PUT request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. put(UriTemplate requestURI)
Create an HTTP PUT request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. put(String requestURI)
Create an HTTP PUT request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. put(String host, UriTemplate requestURI)
Create an HTTP PUT request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. put(String host, String requestURI)
Create an HTTP PUT request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. putAbs(UriTemplate absoluteURI)
Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. putAbs(String absoluteURI)
Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive the responseHttpRequest<Buffer>
WebClient. request(HttpMethod method, int port, String host, UriTemplate requestURI)
Create an HTTP request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, int port, String host, String requestURI)
Create an HTTP request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, RequestOptions options)
Create an HTTP request to send to the server at the specified host and port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, int port, String host, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theport
andhost
parameters.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theport
andhost
parameters.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, RequestOptions options)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theoptions
parameter.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port and default host.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port and default host.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String host, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port andhost
parameter.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String host, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port andhost
parameter.HttpRequest<Buffer>
WebClient. request(HttpMethod method, UriTemplate requestURI)
Create an HTTP request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, String requestURI)
Create an HTTP request to send to the server at the default host and port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, String host, UriTemplate requestURI)
Create an HTTP request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. request(HttpMethod method, String host, String requestURI)
Create an HTTP request to send to the server at the specified host and default port.HttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, SocketAddress serverAddress, UriTemplate absoluteURI)
LikeWebClient.requestAbs(io.vertx.core.http.HttpMethod, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theabsoluteURI
parameter.HttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, SocketAddress serverAddress, String absoluteURI)
LikeWebClient.requestAbs(io.vertx.core.http.HttpMethod, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theabsoluteURI
parameter.HttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, UriTemplate absoluteURI)
Create an HTTP request to send to the server using an absolute URIHttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, String absoluteURI)
Create an HTTP request to send to the server using an absolute URIMethods in io.vertx.reactivex.ext.web.client with parameters of type Buffer Modifier and Type Method Description HttpRequest<T>
HttpRequest. basicAuthentication(Buffer id, Buffer password)
Configure the request to perform basic access authentication.io.reactivex.Single<HttpResponse<T>>
HttpRequest. rxSendBuffer(Buffer body)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
buffer.void
HttpRequest. sendBuffer(Buffer body)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
buffer.void
HttpRequest. sendBuffer(Buffer body, Handler<AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
buffer. -
Uses of Buffer in io.vertx.reactivex.ext.web.client.predicate
Methods in io.vertx.reactivex.ext.web.client.predicate that return types with arguments of type Buffer Modifier and Type Method Description HttpResponse<Buffer>
ResponsePredicateResult. response()
The which has been tested. -
Uses of Buffer in io.vertx.reactivex.ext.web.codec
Methods in io.vertx.reactivex.ext.web.codec that return types with arguments of type Buffer Modifier and Type Method Description static BodyCodec<Buffer>
BodyCodec. buffer()
Method parameters in io.vertx.reactivex.ext.web.codec with type arguments of type Buffer Modifier and Type Method Description static <T> BodyCodec<T>
BodyCodec. create(Function<Buffer,T> decode)
Create a codec that buffers the entire body and then apply thedecode
function and returns the result.static BodyCodec<Void>
BodyCodec. pipe(WriteStream<Buffer> stream)
A body codec that pipes the body to a write stream.static BodyCodec<Void>
BodyCodec. pipe(WriteStream<Buffer> stream, boolean close)
A body codec that pipes the body to a write stream. -
Uses of Buffer in io.vertx.reactivex.ext.web.common.template
Methods in io.vertx.reactivex.ext.web.common.template that return types with arguments of type Buffer Modifier and Type Method Description io.reactivex.Single<Buffer>
TemplateEngine. rxRender(JsonObject context, String templateFileName)
Render the template.io.reactivex.Single<Buffer>
TemplateEngine. rxRender(Map<String,Object> context, String templateFileName)
Render the template.Method parameters in io.vertx.reactivex.ext.web.common.template with type arguments of type Buffer Modifier and Type Method Description void
TemplateEngine. render(JsonObject context, String templateFileName, Handler<AsyncResult<Buffer>> handler)
Render the template.void
TemplateEngine. render(Map<String,Object> context, String templateFileName, Handler<AsyncResult<Buffer>> handler)
Render the template. -
Uses of Buffer in io.vertx.reactivex.ext.web.handler.sockjs
Methods in io.vertx.reactivex.ext.web.handler.sockjs that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>
SockJSSocket. pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .io.reactivex.Flowable<Buffer>
SockJSSocket. toFlowable()
io.reactivex.Observable<Buffer>
SockJSSocket. toObservable()
WriteStreamObserver<Buffer>
SockJSSocket. toObserver()
WriteStreamSubscriber<Buffer>
SockJSSocket. toSubscriber()
Methods in io.vertx.reactivex.ext.web.handler.sockjs with parameters of type Buffer Modifier and Type Method Description void
SockJSSocket. end(Buffer data)
Same as but with anhandler
called when the operation completesvoid
SockJSSocket. end(Buffer data, Handler<AsyncResult<Void>> handler)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
SockJSSocket. rxEnd(Buffer data)
Same as but with anhandler
called when the operation completesio.reactivex.Completable
SockJSSocket. rxWrite(Buffer data)
void
SockJSSocket. write(Buffer data)
void
SockJSSocket. write(Buffer data, Handler<AsyncResult<Void>> handler)
Method parameters in io.vertx.reactivex.ext.web.handler.sockjs with type arguments of type Buffer Modifier and Type Method Description SockJSSocket
SockJSSocket. handler(Handler<Buffer> handler)
void
SockJSSocket. pipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
.void
SockJSSocket. pipeTo(WriteStream<Buffer> dst, Handler<AsyncResult<Void>> handler)
Pipe thisReadStream
to theWriteStream
.io.reactivex.Completable
SockJSSocket. rxPipeTo(WriteStream<Buffer> dst)
Pipe thisReadStream
to theWriteStream
. -
Uses of Buffer in io.vertx.reactivex.ext.web.multipart
Methods in io.vertx.reactivex.ext.web.multipart that return Buffer Modifier and Type Method Description Buffer
FormDataPart. content()
Methods in io.vertx.reactivex.ext.web.multipart with parameters of type Buffer Modifier and Type Method Description MultipartForm
MultipartForm. binaryFileUpload(String name, String filename, Buffer content, String mediaType)
Add a binary file upload form data part.MultipartForm
MultipartForm. textFileUpload(String name, String filename, Buffer content, String mediaType)
Add a text file upload form data part. -
Uses of Buffer in io.vertx.reactivex.ext.web.validation
Methods in io.vertx.reactivex.ext.web.validation that return Buffer Modifier and Type Method Description Buffer
RequestParameter. getBuffer()
-
Uses of Buffer in io.vertx.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client that return types with arguments of type Buffer Modifier and Type Method Description Future<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.Future<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.io.reactivex.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.io.reactivex.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service. -
Uses of Buffer in io.vertx.reactivex.grpc.common
Fields in io.vertx.reactivex.grpc.common with type parameters of type Buffer Modifier and Type Field Description static GrpcMessageDecoder<Buffer>
GrpcMessageDecoder. GZIP
static GrpcMessageEncoder<Buffer>
GrpcMessageEncoder. GZIP
static GrpcMessageDecoder<Buffer>
GrpcMessageDecoder. IDENTITY
static GrpcMessageEncoder<Buffer>
GrpcMessageEncoder. IDENTITY
Methods in io.vertx.reactivex.grpc.common that return Buffer Modifier and Type Method Description Buffer
GrpcMessage. payload()
Methods in io.vertx.reactivex.grpc.common with parameters of type Buffer Modifier and Type Method Description static GrpcMessage
GrpcMessage. message(String encoding, Buffer payload)
-
Uses of Buffer in io.vertx.reactivex.grpc.server
Method parameters in io.vertx.reactivex.grpc.server with type arguments of type Buffer Modifier and Type Method Description GrpcServer
GrpcServer. callHandler(Handler<GrpcServerRequest<Buffer,Buffer>> handler)
Set a call handler that handles any call made to the server.GrpcServer
GrpcServer. callHandler(Handler<GrpcServerRequest<Buffer,Buffer>> handler)
Set a call handler that handles any call made to the server. -
Uses of Buffer in io.vertx.reactivex.kafka.client.producer
Methods in io.vertx.reactivex.kafka.client.producer that return Buffer Modifier and Type Method Description Buffer
KafkaHeader. value()
Methods in io.vertx.reactivex.kafka.client.producer with parameters of type Buffer Modifier and Type Method Description KafkaProducerRecord<K,V>
KafkaProducerRecord. addHeader(String key, Buffer value)
LikeKafkaProducerRecord.addHeader(java.lang.String, java.lang.String)
but with a key/value pairstatic KafkaHeader
KafkaHeader. header(String key, Buffer value)
-
Uses of Buffer in io.vertx.reactivex.mqtt
Methods in io.vertx.reactivex.mqtt with parameters of type Buffer Modifier and Type Method Description MqttClient
MqttClient. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain)
Sends the PUBLISH message to the remote MQTT serverMqttClient
MqttClient. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, Handler<AsyncResult<Integer>> publishSentHandler)
Sends the PUBLISH message to the remote MQTT serverMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain)
Sends the PUBLISH message to the remote MQTT serverMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageIdMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId, io.netty.handler.codec.mqtt.MqttProperties properties)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageIdMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId, io.netty.handler.codec.mqtt.MqttProperties properties, Handler<AsyncResult<Integer>> publishSentHandler)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageIdMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId, Handler<AsyncResult<Integer>> publishSentHandler)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageIdMqttEndpoint
MqttEndpoint. publish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, Handler<AsyncResult<Integer>> publishSentHandler)
Sends the PUBLISH message to the remote MQTT serverio.reactivex.Single<Integer>
MqttClient. rxPublish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain)
Sends the PUBLISH message to the remote MQTT serverio.reactivex.Single<Integer>
MqttEndpoint. rxPublish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain)
Sends the PUBLISH message to the remote MQTT serverio.reactivex.Single<Integer>
MqttEndpoint. rxPublish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageIdio.reactivex.Single<Integer>
MqttEndpoint. rxPublish(String topic, Buffer payload, io.netty.handler.codec.mqtt.MqttQoS qosLevel, boolean isDup, boolean isRetain, int messageId, io.netty.handler.codec.mqtt.MqttProperties properties)
Sends the PUBLISH message to the remote MQTT server explicitly specifying the messageId -
Uses of Buffer in io.vertx.reactivex.mqtt.messages
Methods in io.vertx.reactivex.mqtt.messages that return Buffer Modifier and Type Method Description Buffer
MqttPublishMessage. payload()
-
Uses of Buffer in io.vertx.reactivex.openapi.validation
Methods in io.vertx.reactivex.openapi.validation with parameters of type Buffer Modifier and Type Method Description static ValidatableResponse
ValidatableResponse. create(int statusCode, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters.static ValidatableResponse
ValidatableResponse. create(int statusCode, Map<String,String> headers, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters. -
Uses of Buffer in io.vertx.reactivex.rabbitmq
Methods in io.vertx.reactivex.rabbitmq that return Buffer Modifier and Type Method Description Buffer
RabbitMQMessage. body()
Methods in io.vertx.reactivex.rabbitmq with parameters of type Buffer Modifier and Type Method Description void
RabbitMQClient. basicPublish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message.void
RabbitMQClient. basicPublish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<AsyncResult<Void>> resultHandler)
Publish a message.void
RabbitMQClient. basicPublish(String exchange, String routingKey, Buffer body)
Publish a message.void
RabbitMQClient. basicPublish(String exchange, String routingKey, Buffer body, Handler<AsyncResult<Void>> resultHandler)
Publish a message.void
RabbitMQClient. basicPublishWithDeliveryTag(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<Long> deliveryTagHandler)
Publish a message.void
RabbitMQClient. basicPublishWithDeliveryTag(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<Long> deliveryTagHandler, Handler<AsyncResult<Void>> resultHandler)
Publish a message.void
RabbitMQPublisher. publish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message.void
RabbitMQPublisher. publish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<AsyncResult<Void>> resultHandler)
Publish a message.void
RabbitMQPublisher. publishConfirm(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message and complete when publish confirm has returned.void
RabbitMQPublisher. publishConfirm(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<AsyncResult<Long>> resultHandler)
Publish a message and complete when publish confirm has returned.io.reactivex.Completable
RabbitMQClient. rxBasicPublish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message.io.reactivex.Completable
RabbitMQClient. rxBasicPublish(String exchange, String routingKey, Buffer body)
Publish a message.io.reactivex.Completable
RabbitMQClient. rxBasicPublishWithDeliveryTag(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body, Handler<Long> deliveryTagHandler)
Publish a message.io.reactivex.Completable
RabbitMQPublisher. rxPublish(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message.io.reactivex.Single<Long>
RabbitMQPublisher. rxPublishConfirm(String exchange, String routingKey, com.rabbitmq.client.BasicProperties properties, Buffer body)
Publish a message and complete when publish confirm has returned. -
Uses of Buffer in io.vertx.reactivex.redis.client
Methods in io.vertx.reactivex.redis.client that return Buffer Modifier and Type Method Description Buffer
Response. toBuffer()
Get this response as Buffer.Methods in io.vertx.reactivex.redis.client with parameters of type Buffer Modifier and Type Method Description Request
Request. arg(Buffer arg)
Adds a String key argument -
Uses of Buffer in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return Buffer Modifier and Type Method Description Buffer
Row. getBuffer(String column)
Get a buffer value for the givencolumn
.Buffer
Tuple. getBuffer(int pos)
Get a buffer value atpos
.Methods in io.vertx.reactivex.sqlclient with parameters of type Buffer Modifier and Type Method Description Tuple
Tuple. addBuffer(Buffer value)
Add a buffer value at the end of the tuple.
-