| Modifier and Type | Method and Description | 
|---|---|
| Buffer | AmqpMessage. bodyAsBinary() | 
| Modifier and Type | Method and Description | 
|---|---|
| AmqpMessageBuilder | AmqpMessageBuilder. withBufferAsBody(Buffer buffer) | 
| Modifier and Type | Method and Description | 
|---|---|
| static <T> MaybeTransformer<Buffer,T> | MaybeHelper. unmarshaller(Class<T> mappedType) | 
| static <T> SingleTransformer<Buffer,T> | SingleHelper. unmarshaller(Class<T> mappedType) | 
| static <T> FlowableTransformer<Buffer,T> | FlowableHelper. unmarshaller(Class<T> mappedType) | 
| static <T> ObservableTransformer<Buffer,T> | ObservableHelper. unmarshaller(Class<T> mappedType) | 
| static <T> MaybeTransformer<Buffer,T> | MaybeHelper. unmarshaller(Class<T> mappedType,
            ObjectCodec mapper) | 
| static <T> SingleTransformer<Buffer,T> | SingleHelper. unmarshaller(Class<T> mappedType,
            ObjectCodec mapper) | 
| static <T> FlowableTransformer<Buffer,T> | FlowableHelper. unmarshaller(Class<T> mappedType,
            ObjectCodec mapper) | 
| static <T> ObservableTransformer<Buffer,T> | ObservableHelper. unmarshaller(Class<T> mappedType,
            ObjectCodec mapper) | 
| static <T> MaybeTransformer<Buffer,T> | MaybeHelper. unmarshaller(TypeReference<T> mappedTypeRef) | 
| static <T> SingleTransformer<Buffer,T> | SingleHelper. unmarshaller(TypeReference<T> mappedTypeRef) | 
| static <T> FlowableTransformer<Buffer,T> | FlowableHelper. unmarshaller(TypeReference<T> mappedTypeRef) | 
| static <T> ObservableTransformer<Buffer,T> | ObservableHelper. unmarshaller(TypeReference<T> mappedTypeRef) | 
| static <T> MaybeTransformer<Buffer,T> | MaybeHelper. unmarshaller(TypeReference<T> mappedTypeRef,
            ObjectCodec mapper) | 
| static <T> SingleTransformer<Buffer,T> | SingleHelper. unmarshaller(TypeReference<T> mappedTypeRef,
            ObjectCodec mapper) | 
| static <T> FlowableTransformer<Buffer,T> | FlowableHelper. unmarshaller(TypeReference<T> mappedTypeRef,
            ObjectCodec mapper) | 
| static <T> ObservableTransformer<Buffer,T> | ObservableHelper. unmarshaller(TypeReference<T> mappedTypeRef,
            ObjectCodec mapper) | 
| Modifier and Type | Field and Description | 
|---|---|
| static io.vertx.lang.rx.TypeArg<Buffer> | Buffer. __TYPE_ARG | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | Buffer. appendBuffer(Buffer buff)Appends the specified  Bufferto the end of this Buffer. | 
| Buffer | Buffer. appendBuffer(Buffer buff,
            int offset,
            int len)Appends the specified  Bufferstarting at theoffsetusinglento the end of this Buffer. | 
| Buffer | Buffer. appendByte(byte b)Appends the specified  byteto the end of the Buffer. | 
| Buffer | Buffer. appendBytes(byte[] bytes)Appends the specified  byte[]to the end of the Buffer. | 
| Buffer | Buffer. appendBytes(byte[] bytes,
           int offset,
           int len)Appends the specified number of bytes from  byte[]to the end of the Buffer, starting at the given offset. | 
| Buffer | Buffer. appendDouble(double d)Appends the specified  doubleto the end of the Buffer. | 
| Buffer | Buffer. appendFloat(float f)Appends the specified  floatto the end of the Buffer. | 
| Buffer | Buffer. appendInt(int i)Appends the specified  intto the end of the Buffer. | 
| Buffer | Buffer. appendIntLE(int i)Appends the specified  intto the end of the Buffer in the Little Endian Byte Order. | 
| Buffer | Buffer. appendLong(long l)Appends the specified  longto the end of the Buffer. | 
| Buffer | Buffer. appendLongLE(long l)Appends the specified  longto the end of the Buffer in the Little Endian Byte Order. | 
| Buffer | Buffer. appendMedium(int i)Appends the specified 24bit  intto the end of the Buffer. | 
| Buffer | Buffer. appendMediumLE(int i)Appends the specified 24bit  intto the end of the Buffer in the Little Endian Byte Order. | 
| Buffer | Buffer. appendShort(short s)Appends the specified  shortto the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written. | 
| Buffer | Buffer. appendShortLE(short s)Appends the specified  shortto 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 specified  String strto the end of the Buffer with UTF-8 encoding. | 
| Buffer | Buffer. appendString(String str,
            String enc)Appends the specified  Stringto the end of the Buffer with the encoding as specified byenc. | 
| Buffer | Buffer. appendUnsignedByte(short b)Appends the specified unsigned  byteto the end of the Buffer. | 
| Buffer | Buffer. appendUnsignedInt(long i)Appends the specified unsigned  intto the end of the Buffer. | 
| Buffer | Buffer. appendUnsignedIntLE(long i)Appends the specified unsigned  intto the end of the Buffer in the Little Endian Byte Order. | 
| Buffer | Buffer. appendUnsignedShort(int s)Appends the specified unsigned  shortto the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written. | 
| Buffer | Buffer. appendUnsignedShortLE(int s)Appends the specified unsigned  shortto 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(io.netty.buffer.ByteBuf byteBuf)
 Create a new buffer from a Netty  ByteBuf. | 
| static Buffer | Buffer. buffer(int initialSizeHint)Create a new buffer given the initial size hint. | 
| 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 a  Bufferstarting at positionstartand ending at positionend - 1 | 
| Buffer | Buffer. getBytes(byte[] dst)Transfers the content of the Buffer into a  byte[]. | 
| Buffer | Buffer. getBytes(byte[] dst,
        int dstIndex)Transfers the content of the Buffer into a  byte[]at the specific destination. | 
| Buffer | Buffer. getBytes(int start,
        int end,
        byte[] dst)Transfers the content of the Buffer starting at position  startand ending at positionend - 1into abyte[]. | 
| Buffer | Buffer. getBytes(int start,
        int end,
        byte[] dst,
        int dstIndex)Transfers the content of the Buffer starting at position  startand ending at positionend - 1into abyte[]at the specific destination. | 
| static Buffer | Buffer. newInstance(Buffer arg) | 
| Buffer | Buffer. setBuffer(int pos,
         Buffer b)Sets the bytes at position  posin the Buffer to the bytes represented by theBuffer b. | 
| Buffer | Buffer. setBuffer(int pos,
         Buffer b,
         int offset,
         int len)Sets the bytes at position  posin the Buffer to the bytes represented by theBuffer bon the givenoffsetandlen. | 
| Buffer | Buffer. setByte(int pos,
       byte b)Sets the  byteat positionposin the Buffer to the valueb. | 
| Buffer | Buffer. setBytes(int pos,
        byte[] b)Sets the bytes at position  posin 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 position  posin the Buffer to the bytes represented by thebyte[] b. | 
| Buffer | Buffer. setBytes(int pos,
        ByteBuffer b)Sets the bytes at position  posin the Buffer to the bytes represented by theByteBuffer b. | 
| Buffer | Buffer. setDouble(int pos,
         double d)Sets the  doubleat positionposin the Buffer to the valued. | 
| Buffer | Buffer. setFloat(int pos,
        float f)Sets the  floatat positionposin the Buffer to the valuef. | 
| Buffer | Buffer. setInt(int pos,
      int i)Sets the  intat positionposin the Buffer to the valuei. | 
| Buffer | Buffer. setIntLE(int pos,
        int i)Sets the  intat positionposin the Buffer to the valueiin the Little Endian Byte Order. | 
| Buffer | Buffer. setLong(int pos,
       long l)Sets the  longat positionposin the Buffer to the valuel. | 
| Buffer | Buffer. setLongLE(int pos,
         long l)Sets the  longat positionposin the Buffer to the valuelin the Little Endian Byte Order. | 
| Buffer | Buffer. setMedium(int pos,
         int i)Sets the 24bit  intat positionposin the Buffer to the valuei. | 
| Buffer | Buffer. setMediumLE(int pos,
           int i)Sets the 24bit  intat positionposin the Buffer to the valuei. | 
| Buffer | Buffer. setShort(int pos,
        short s)Sets the  shortat positionposin the Buffer to the values. | 
| Buffer | Buffer. setShortLE(int pos,
          short s)Sets the  shortat positionposin the Buffer to the valuesin the Little Endian Byte Order. | 
| Buffer | Buffer. setString(int pos,
         String str)Sets the bytes at position  posin the Buffer to the value ofstrencoded in UTF-8. | 
| Buffer | Buffer. setString(int pos,
         String str,
         String enc)Sets the bytes at position  posin the Buffer to the value ofstrencoded in encodingenc. | 
| Buffer | Buffer. setUnsignedByte(int pos,
               short b)Sets the unsigned  byteat positionposin the Buffer to the valueb. | 
| Buffer | Buffer. setUnsignedInt(int pos,
              long i)Sets the unsigned  intat positionposin the Buffer to the valuei. | 
| Buffer | Buffer. setUnsignedIntLE(int pos,
                long i)Sets the unsigned  intat positionposin the Buffer to the valueiin the Little Endian Byte Order. | 
| Buffer | Buffer. setUnsignedShort(int pos,
                int s)Sets the unsigned  shortat positionposin the Buffer to the values. | 
| Buffer | Buffer. setUnsignedShortLE(int pos,
                  int s)Sets the unsigned  shortat positionposin the Buffer to the valuesin 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | Buffer. appendBuffer(Buffer buff)Appends the specified  Bufferto the end of this Buffer. | 
| Buffer | Buffer. appendBuffer(Buffer buff,
            int offset,
            int len)Appends the specified  Bufferstarting at theoffsetusinglento the end of this Buffer. | 
| Buffer | Buffer. setBuffer(int pos,
         Buffer b)Sets the bytes at position  posin the Buffer to the bytes represented by theBuffer b. | 
| Buffer | Buffer. setBuffer(int pos,
         Buffer b,
         int offset,
         int len)Sets the bytes at position  posin the Buffer to the bytes represented by theBuffer bon the givenoffsetandlen. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | DatagramPacket. data()Returns the data of the  DatagramPacket | 
| Modifier and Type | Method and Description | 
|---|---|
| WriteStream<Buffer> | DatagramSocket. sender(int port,
      String host)Returns a  WriteStreamable to send  to theSocketAddress. | 
| Modifier and Type | Method and Description | 
|---|---|
| Completable | DatagramSocket. rxSend(Buffer packet,
      int port,
      String host)Write the given  Bufferto theSocketAddress. | 
| DatagramSocket | DatagramSocket. send(Buffer packet,
    int port,
    String host)Write the given  Bufferto theSocketAddress. | 
| DatagramSocket | DatagramSocket. send(Buffer packet,
    int port,
    String host,
    Handler<AsyncResult<Void>> handler)Write the given  Bufferto theSocketAddress. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | FileSystem. readFileBlocking(String path) | 
| Modifier and Type | Method and Description | 
|---|---|
| Pipe<Buffer> | AsyncFile. pipe()Pause this stream and return a  to transfer the elements of this stream to a destination . | 
| Single<Buffer> | AsyncFile. rxRead(Buffer buffer,
      int offset,
      long position,
      int length)Reads  lengthbytes of data from the file at positionpositionin the file, asynchronously. | 
| Single<Buffer> | FileSystem. rxReadFile(String path)Reads the entire file as represented by the path  pathas a , asynchronously. | 
| Flowable<Buffer> | AsyncFile. toFlowable() | 
| Observable<Buffer> | AsyncFile. toObservable() | 
| WriteStreamObserver<Buffer> | AsyncFile. toObserver() | 
| WriteStreamSubscriber<Buffer> | AsyncFile. toSubscriber() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AsyncFile. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | AsyncFile. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| AsyncFile | AsyncFile. read(Buffer buffer,
    int offset,
    long position,
    int length)Reads  lengthbytes of data from the file at positionpositionin the file, asynchronously. | 
| AsyncFile | AsyncFile. read(Buffer buffer,
    int offset,
    long position,
    int length,
    Handler<AsyncResult<Buffer>> handler)Reads  lengthbytes of data from the file at positionpositionin the file, asynchronously. | 
| Completable | AsyncFile. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Single<Buffer> | AsyncFile. rxRead(Buffer buffer,
      int offset,
      long position,
      int length)Reads  lengthbytes of data from the file at positionpositionin the file, asynchronously. | 
| Completable | AsyncFile. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | AsyncFile. rxWrite(Buffer buffer,
       long position)Write a  Bufferto the file at positionpositionin the file, asynchronously. | 
| Completable | FileSystem. rxWriteFile(String path,
           Buffer data)Creates the file, and writes the specified  Buffer datato the file represented by the pathpath,
 asynchronously. | 
| void | AsyncFile. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | AsyncFile. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | AsyncFile. write(Buffer buffer,
     long position)Write a  Bufferto the file at positionpositionin the file, asynchronously. | 
| void | AsyncFile. write(Buffer buffer,
     long position,
     Handler<AsyncResult<Void>> handler)Write a  Bufferto the file at positionpositionin the file, asynchronously. | 
| FileSystem | FileSystem. writeFile(String path,
         Buffer data)Creates the file, and writes the specified  Buffer datato the file represented by the pathpath,
 asynchronously. | 
| FileSystem | FileSystem. writeFile(String path,
         Buffer data,
         Handler<AsyncResult<Void>> handler)Creates the file, and writes the specified  Buffer datato the file represented by the pathpath,
 asynchronously. | 
| FileSystem | FileSystem. writeFileBlocking(String path,
                 Buffer data) | 
| Modifier and Type | Method and Description | 
|---|---|
| AsyncFile | AsyncFile. handler(Handler<Buffer> handler) | 
| void | AsyncFile. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | AsyncFile. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| AsyncFile | AsyncFile. read(Buffer buffer,
    int offset,
    long position,
    int length,
    Handler<AsyncResult<Buffer>> handler)Reads  lengthbytes of data from the file at positionpositionin the file, asynchronously. | 
| FileSystem | FileSystem. readFile(String path,
        Handler<AsyncResult<Buffer>> handler)Reads the entire file as represented by the path  pathas a , asynchronously. | 
| Completable | AsyncFile. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | WebSocketFrame. binaryData() | 
| Buffer | HttpFrame. payload() | 
| Modifier and Type | Method and Description | 
|---|---|
| Pipe<Buffer> | HttpClientResponse. 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> | 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> | WebSocketBase. pipe()Pause this stream and return a  to transfer the elements of this stream to a destination . | 
| Single<Buffer> | HttpClientResponse. rxBody()Same as  HttpClientResponse.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completes | 
| Single<Buffer> | HttpConnection. rxPing(Buffer data)Send a  frame to the remote endpoint. | 
| Flowable<Buffer> | HttpClientResponse. toFlowable() | 
| Flowable<Buffer> | ServerWebSocket. toFlowable() | 
| Flowable<Buffer> | WebSocket. toFlowable() | 
| Flowable<Buffer> | HttpServerFileUpload. toFlowable() | 
| Flowable<Buffer> | HttpServerRequest. toFlowable() | 
| Observable<Buffer> | HttpClientResponse. toObservable() | 
| Observable<Buffer> | ServerWebSocket. toObservable() | 
| Observable<Buffer> | WebSocket. toObservable() | 
| Observable<Buffer> | HttpServerFileUpload. toObservable() | 
| Observable<Buffer> | HttpServerRequest. toObservable() | 
| WriteStreamObserver<Buffer> | HttpServerResponse. toObserver() | 
| WriteStreamObserver<Buffer> | ServerWebSocket. toObserver() | 
| WriteStreamObserver<Buffer> | HttpClientRequest. toObserver() | 
| WriteStreamObserver<Buffer> | WebSocket. toObserver() | 
| WriteStreamSubscriber<Buffer> | HttpServerResponse. toSubscriber() | 
| WriteStreamSubscriber<Buffer> | ServerWebSocket. toSubscriber() | 
| WriteStreamSubscriber<Buffer> | HttpClientRequest. toSubscriber() | 
| WriteStreamSubscriber<Buffer> | WebSocket. toSubscriber() | 
| Modifier and Type | Method and 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 frame | 
| void | HttpServerResponse. end(Buffer chunk)Same as  HttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| void | ServerWebSocket. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | HttpClientRequest. end(Buffer chunk)Same as  HttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| void | WebSocket. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocketBase. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | HttpServerResponse. end(Buffer chunk,
   Handler<AsyncResult<Void>> handler)Same as  HttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| void | ServerWebSocket. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | HttpClientRequest. end(Buffer chunk,
   Handler<AsyncResult<Void>> handler)Same as  HttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| void | WebSocket. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocketBase. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| HttpConnection | 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. | 
| Completable | HttpServerResponse. rxEnd(Buffer chunk)Same as  HttpServerResponse.end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| Completable | ServerWebSocket. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | HttpClientRequest. rxEnd(Buffer chunk)Same as  HttpClientRequest.end(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| Completable | WebSocket. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | WebSocketBase. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Single<Buffer> | HttpConnection. rxPing(Buffer data)Send a  frame to the remote endpoint. | 
| Completable | HttpServerResponse. rxSend(Buffer body)Send the request with a buffer  body. | 
| Single<HttpClientResponse> | HttpClientRequest. rxSend(Buffer body)Send the request with a buffer  body. | 
| Completable | HttpServerResponse. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | ServerWebSocket. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | HttpClientRequest. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | WebSocket. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | WebSocketBase. rxWrite(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | ServerWebSocket. rxWriteBinaryMessage(Buffer data) | 
| Completable | WebSocket. rxWriteBinaryMessage(Buffer data) | 
| Completable | WebSocketBase. rxWriteBinaryMessage(Buffer data)Same as  WebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| Completable | ServerWebSocket. rxWriteFinalBinaryFrame(Buffer data) | 
| Completable | WebSocket. rxWriteFinalBinaryFrame(Buffer data) | 
| Completable | WebSocketBase. rxWriteFinalBinaryFrame(Buffer data)Same as  WebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| Completable | ServerWebSocket. rxWritePing(Buffer data)Writes a ping frame to the connection. | 
| Completable | WebSocket. rxWritePing(Buffer data)Writes a ping frame to the connection. | 
| Completable | WebSocketBase. rxWritePing(Buffer data)Writes a ping frame to the connection. | 
| Completable | ServerWebSocket. rxWritePong(Buffer data)Writes a pong frame to the connection. | 
| Completable | WebSocket. rxWritePong(Buffer data)Writes a pong frame to the connection. | 
| Completable | WebSocketBase. rxWritePong(Buffer data)Writes a pong frame to the connection. | 
| void | HttpServerResponse. send(Buffer body)Send the request with a buffer  body. | 
| void | HttpClientRequest. send(Buffer body)Send the request with a buffer  body. | 
| void | HttpClientRequest. send(Buffer body,
    Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a buffer  body. | 
| void | HttpServerResponse. send(Buffer body,
    Handler<AsyncResult<Void>> handler)Send the request with a buffer  body. | 
| void | HttpServerResponse. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | ServerWebSocket. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | HttpClientRequest. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocket. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocketBase. write(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | HttpServerResponse. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | ServerWebSocket. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | HttpClientRequest. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocket. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| void | WebSocketBase. write(Buffer data,
     Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| ServerWebSocket | ServerWebSocket. writeBinaryMessage(Buffer data) | 
| WebSocket | WebSocket. writeBinaryMessage(Buffer data) | 
| WebSocketBase | WebSocketBase. writeBinaryMessage(Buffer data)Same as  WebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| ServerWebSocket | ServerWebSocket. writeBinaryMessage(Buffer data,
                  Handler<AsyncResult<Void>> handler) | 
| WebSocket | WebSocket. writeBinaryMessage(Buffer data,
                  Handler<AsyncResult<Void>> handler) | 
| WebSocketBase | WebSocketBase. writeBinaryMessage(Buffer data,
                  Handler<AsyncResult<Void>> handler)Same as  WebSocketBase.writeBinaryMessage(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| HttpServerResponse | HttpServerResponse. writeCustomFrame(int type,
                int flags,
                Buffer payload)Write an HTTP/2 frame to the response, allowing to extend the HTTP/2 protocol. | 
| HttpClientRequest | HttpClientRequest. writeCustomFrame(int type,
                int flags,
                Buffer payload)Write an HTTP/2 frame to the request, allowing to extend the HTTP/2 protocol. | 
| ServerWebSocket | ServerWebSocket. writeFinalBinaryFrame(Buffer data) | 
| WebSocket | WebSocket. writeFinalBinaryFrame(Buffer data) | 
| WebSocketBase | WebSocketBase. writeFinalBinaryFrame(Buffer data)Same as  WebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| ServerWebSocket | ServerWebSocket. writeFinalBinaryFrame(Buffer data,
                     Handler<AsyncResult<Void>> handler) | 
| WebSocket | WebSocket. writeFinalBinaryFrame(Buffer data,
                     Handler<AsyncResult<Void>> handler) | 
| WebSocketBase | WebSocketBase. writeFinalBinaryFrame(Buffer data,
                     Handler<AsyncResult<Void>> handler)Same as  WebSocketBase.writeFinalBinaryFrame(io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completes | 
| WebSocketBase | ServerWebSocket. writePing(Buffer data)Writes a ping frame to the connection. | 
| WebSocketBase | WebSocket. writePing(Buffer data)Writes a ping frame to the connection. | 
| WebSocketBase | WebSocketBase. writePing(Buffer data)Writes a ping frame to the connection. | 
| WebSocketBase | ServerWebSocket. writePing(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a ping frame to the connection. | 
| WebSocketBase | WebSocket. writePing(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a ping frame to the connection. | 
| WebSocketBase | WebSocketBase. writePing(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a ping frame to the connection. | 
| WebSocketBase | ServerWebSocket. writePong(Buffer data)Writes a pong frame to the connection. | 
| WebSocketBase | WebSocket. writePong(Buffer data)Writes a pong frame to the connection. | 
| WebSocketBase | WebSocketBase. writePong(Buffer data)Writes a pong frame to the connection. | 
| WebSocketBase | ServerWebSocket. writePong(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a pong frame to the connection. | 
| WebSocketBase | WebSocket. writePong(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a pong frame to the connection. | 
| WebSocketBase | WebSocketBase. writePong(Buffer data,
         Handler<AsyncResult<Void>> handler)Writes a pong frame to the connection. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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 as  HttpClientResponse.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completes | 
| HttpServerRequest | HttpServerRequest. body(Handler<AsyncResult<Buffer>> handler)Same as  HttpServerRequest.body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completes | 
| HttpClientResponse | 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. | 
| HttpClientResponse | HttpClientResponse. handler(Handler<Buffer> handler) | 
| ServerWebSocket | ServerWebSocket. handler(Handler<Buffer> handler) | 
| WebSocket | WebSocket. handler(Handler<Buffer> handler) | 
| HttpServerFileUpload | HttpServerFileUpload. handler(Handler<Buffer> handler) | 
| HttpServerRequest | HttpServerRequest. 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 | HttpClientResponse. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | ServerWebSocket. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | WebSocket. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | HttpServerFileUpload. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | HttpServerRequest. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | WebSocketBase. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | HttpClientResponse. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| void | ServerWebSocket. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| void | WebSocket. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| void | HttpServerFileUpload. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| void | HttpServerRequest. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| void | WebSocketBase. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| 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. | 
| Completable | HttpClientResponse. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | ServerWebSocket. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | WebSocket. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | HttpServerFileUpload. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | HttpServerRequest. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | WebSocketBase. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Completable | HttpServerResponse. rxSend(Flowable<Buffer> body)Send the request with a stream  body. | 
| Single<HttpClientResponse> | HttpClientRequest. rxSend(Flowable<Buffer> body)Send the request with a stream  body. | 
| Completable | HttpServerResponse. rxSend(ReadStream<Buffer> body)Send the request with a stream  body. | 
| Single<HttpClientResponse> | HttpClientRequest. rxSend(ReadStream<Buffer> body)Send the request with a stream  body. | 
| void | HttpServerResponse. send(Flowable<Buffer> body)Send the request with a stream  body. | 
| void | HttpClientRequest. send(Flowable<Buffer> body)Send the request with a stream  body. | 
| void | HttpClientRequest. send(Flowable<Buffer> body,
    Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a stream  body. | 
| void | HttpServerResponse. send(Flowable<Buffer> body,
    Handler<AsyncResult<Void>> handler)Send the request with a stream  body. | 
| void | HttpServerResponse. send(ReadStream<Buffer> body)Send the request with a stream  body. | 
| void | HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a stream  body. | 
| void | HttpClientRequest. send(ReadStream<Buffer> body,
    Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a stream  body. | 
| void | HttpServerResponse. send(ReadStream<Buffer> body,
    Handler<AsyncResult<Void>> handler)Send the request with a stream  body. | 
| Modifier and Type | Method and Description | 
|---|---|
| Pipe<Buffer> | NetSocket. pipe()Pause this stream and return a  to transfer the elements of this stream to a destination . | 
| Flowable<Buffer> | NetSocket. toFlowable() | 
| Observable<Buffer> | NetSocket. toObservable() | 
| WriteStreamObserver<Buffer> | NetSocket. toObserver() | 
| WriteStreamSubscriber<Buffer> | NetSocket. toSubscriber() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | NetSocket. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | NetSocket. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| Completable | NetSocket. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | NetSocket. rxWrite(Buffer message)Like  WriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the message has been written
 or failed to be written. | 
| void | NetSocket. write(Buffer message)Like  WriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the message has been written
 or failed to be written. | 
| void | NetSocket. write(Buffer message,
     Handler<AsyncResult<Void>> handler)Like  WriteStream.write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the message has been written
 or failed to be written. | 
| Modifier and Type | Method and Description | 
|---|---|
| NetSocket | NetSocket. handler(Handler<Buffer> handler) | 
| void | NetSocket. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | NetSocket. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| Completable | NetSocket. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | JsonEvent. binaryValue()Return the binary value. | 
| Modifier and Type | Method and Description | 
|---|---|
| Pipe<Buffer> | RecordParser. pipe()Pause this stream and return a  to transfer the elements of this stream to a destination . | 
| Flowable<Buffer> | RecordParser. toFlowable() | 
| Observable<Buffer> | RecordParser. toObservable() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | RecordParser. delimitedMode(Buffer delim)Flip the parser into delimited mode, and where the delimiter can be represented
 by the delimiter  delim. | 
| void | RecordParser. handle(Buffer buffer)This method is called to provide the parser with data. | 
| void | JsonParser. handle(Buffer event)Something has happened, so handle it. | 
| static RecordParser | RecordParser. newDelimited(Buffer delim)Create a new  RecordParserinstance, initially in delimited mode, and where the delimiter can be represented
 by theBufferdelim. | 
| static RecordParser | RecordParser. newDelimited(Buffer delim,
            Flowable<Buffer> stream)Like  RecordParser.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)Like  RecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)but set theoutputthat will receive whole records
 which have been parsed. | 
| static RecordParser | RecordParser. newDelimited(Buffer delim,
            ReadStream<Buffer> stream)Like  RecordParser.newDelimited(java.lang.String, io.vertx.core.Handler<io.vertx.reactivex.core.buffer.Buffer>)but wraps thestream. | 
| JsonParser | JsonParser. write(Buffer buffer)Handle a  Buffer, pretty much like callingHandler. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | MailAttachment. getData()get the data | 
| Modifier and Type | Method and Description | 
|---|---|
| ReadStream<Buffer> | MailAttachment. getStream()Gets the data stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| MailAttachment | MailAttachment. setData(Buffer data)set the data | 
| Modifier and Type | Method and Description | 
|---|---|
| MailAttachment | MailAttachment. setStream(Flowable<Buffer> stream)Sets the data stream. | 
| MailAttachment | MailAttachment. setStream(ReadStream<Buffer> stream)Sets the data stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| Single<Frame> | StompClientConnection. rxSend(Map<String,String> headers,
      Buffer body)Sends a  SENDframe to the server. | 
| Single<Frame> | StompClientConnection. rxSend(String destination,
      Buffer body)Sends a  SENDframe to the server to the given destination. | 
| Single<Frame> | StompClientConnection. rxSend(String destination,
      Map<String,String> headers,
      Buffer body)Sends a  SENDframe to the server to the given destination. | 
| StompClientConnection | StompClientConnection. send(Map<String,String> headers,
    Buffer body)Sends a  SENDframe to the server. | 
| StompClientConnection | StompClientConnection. send(Map<String,String> headers,
    Buffer body,
    Handler<AsyncResult<Frame>> receiptHandler)Sends a  SENDframe to the server. | 
| StompClientConnection | StompClientConnection. send(String destination,
    Buffer body)Sends a  SENDframe to the server to the given destination. | 
| StompClientConnection | StompClientConnection. send(String destination,
    Buffer body,
    Handler<AsyncResult<Frame>> receiptHandler)Sends a  SENDframe to the server to the given destination. | 
| StompClientConnection | StompClientConnection. send(String destination,
    Map<String,String> headers,
    Buffer body)Sends a  SENDframe to the server to the given destination. | 
| StompClientConnection | StompClientConnection. send(String destination,
    Map<String,String> headers,
    Buffer body,
    Handler<AsyncResult<Frame>> receiptHandler)Sends a  SENDframe to the server to the given destination. | 
| StompServerConnection | StompServerConnection. write(Buffer buffer)Writes the given buffer to the socket. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | RoutingContext. getBody() | 
| Modifier and Type | Method and Description | 
|---|---|
| RoutingContext | RoutingContext. end(Buffer buffer) | 
| RoutingContext | RoutingContext. end(Buffer buffer,
   Handler<AsyncResult<Void>> handler) | 
| Completable | RoutingContext. rxEnd(Buffer buffer) | 
| void | RoutingContext. setBody(Buffer body)Set the body. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | HttpResponse. bodyAsBuffer() | 
| Modifier and Type | Method and Description | 
|---|---|
| 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(String requestURI)Create an HTTP DELETE request to send to the server at the default host and 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(String absoluteURI)Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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(String requestURI)Create an HTTP GET request to send to the server at the default host and 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(String absoluteURI)Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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(String requestURI)Create an HTTP HEAD request to send to the server at the default host and 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(String absoluteURI)Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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(String requestURI)Create an HTTP PATCH request to send to the server at the default host and 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(String absoluteURI)Create an HTTP PATCH request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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(String requestURI)Create an HTTP POST request to send to the server at the default host and 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(String absoluteURI)Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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(String requestURI)Create an HTTP PUT request to send to the server at the default host and 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(String absoluteURI)Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive
 the response | 
| 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,
       String requestURI)Like  WebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)using theserverAddressparameter to connect to the
 server instead of theportandhostparameters. | 
| HttpRequest<Buffer> | WebClient. request(HttpMethod method,
       SocketAddress serverAddress,
       RequestOptions options)Like  WebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)using theserverAddressparameter to connect to the
 server instead of theoptionsparameter. | 
| HttpRequest<Buffer> | WebClient. request(HttpMethod method,
       SocketAddress serverAddress,
       String requestURI)Like  WebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)using theserverAddressparameter to connect to the
 server instead of the default port and default host. | 
| HttpRequest<Buffer> | WebClient. request(HttpMethod method,
       SocketAddress serverAddress,
       String host,
       String requestURI)Like  WebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)using theserverAddressparameter to connect to the
 server instead of the default port andhostparameter. | 
| 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,
       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,
          String absoluteURI)Like  WebClient.requestAbs(io.vertx.core.http.HttpMethod, java.lang.String)using theserverAddressparameter to connect to the
 server instead of theabsoluteURIparameter. | 
| HttpRequest<Buffer> | WebClient. requestAbs(HttpMethod method,
          String absoluteURI)Create an HTTP request to send to the server using an absolute URI | 
| Modifier and Type | Method and Description | 
|---|---|
| HttpRequest<T> | HttpRequest. basicAuthentication(Buffer id,
                   Buffer password)Configure the request to perform basic access authentication. | 
| Single<HttpResponse<T>> | HttpRequest. rxSendBuffer(Buffer body)Like  HttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)but with an HTTP requestbodybuffer. | 
| void | HttpRequest. sendBuffer(Buffer body)Like  HttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)but with an HTTP requestbodybuffer. | 
| void | HttpRequest. sendBuffer(Buffer body,
          Handler<AsyncResult<HttpResponse<T>>> handler)Like  HttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)but with an HTTP requestbodybuffer. | 
| Modifier and Type | Method and Description | 
|---|---|
| HttpResponse<Buffer> | ResponsePredicateResult. response()The  which has been tested. | 
| Modifier and Type | Method and Description | 
|---|---|
| static BodyCodec<Buffer> | BodyCodec. buffer() | 
| Modifier and Type | Method and Description | 
|---|---|
| static <T> BodyCodec<T> | BodyCodec. create(java.util.function.Function<Buffer,T> decode)Create a codec that buffers the entire body and then apply the  decodefunction 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| Single<Buffer> | TemplateEngine. rxRender(JsonObject context,
        String templateFileName)Render the template. | 
| Single<Buffer> | TemplateEngine. rxRender(Map<String,Object> context,
        String templateFileName)Render the template. | 
| Modifier and Type | Method and 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| Pipe<Buffer> | SockJSSocket. pipe()Pause this stream and return a  to transfer the elements of this stream to a destination . | 
| Flowable<Buffer> | SockJSSocket. toFlowable() | 
| Observable<Buffer> | SockJSSocket. toObservable() | 
| WriteStreamObserver<Buffer> | SockJSSocket. toObserver() | 
| WriteStreamSubscriber<Buffer> | SockJSSocket. toSubscriber() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | SockJSSocket. end(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| void | SockJSSocket. end(Buffer data,
   Handler<AsyncResult<Void>> handler)Same as  but with an  handlercalled when the operation completes | 
| Completable | SockJSSocket. rxEnd(Buffer data)Same as  but with an  handlercalled when the operation completes | 
| Completable | SockJSSocket. rxWrite(Buffer data) | 
| void | SockJSSocket. write(Buffer data) | 
| void | SockJSSocket. write(Buffer data,
     Handler<AsyncResult<Void>> handler) | 
| Modifier and Type | Method and Description | 
|---|---|
| SockJSSocket | SockJSSocket. handler(Handler<Buffer> handler) | 
| void | SockJSSocket. pipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| void | SockJSSocket. pipeTo(WriteStream<Buffer> dst,
      Handler<AsyncResult<Void>> handler)Pipe this  ReadStreamto theWriteStream. | 
| Completable | SockJSSocket. rxPipeTo(WriteStream<Buffer> dst)Pipe this  ReadStreamto theWriteStream. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | FormDataPart. content() | 
| Modifier and Type | Method and 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | RequestParameter. getBuffer() | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | KafkaHeader. value() | 
| Modifier and Type | Method and Description | 
|---|---|
| KafkaProducerRecord<K,V> | KafkaProducerRecord. addHeader(String key,
         Buffer value)Like  KafkaProducerRecord.addHeader(java.lang.String, java.lang.String)but with a key/value pair | 
| static KafkaHeader | KafkaHeader. header(String key,
      Buffer value) | 
| Modifier and Type | Method and 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 server | 
| MqttEndpoint | 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 server | 
| MqttClient | 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 server | 
| MqttEndpoint | 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 server | 
| MqttEndpoint | 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 messageId | 
| MqttEndpoint | 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 messageId | 
| MqttEndpoint | 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 messageId | 
| MqttEndpoint | 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 messageId | 
| 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 server | 
| 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 server | 
| 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 messageId | 
| 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 | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | MqttPublishMessage. payload() | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | RabbitMQMessage. body() | 
| Modifier and Type | Method and 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. | 
| Completable | RabbitMQClient. rxBasicPublish(String exchange,
              String routingKey,
              com.rabbitmq.client.BasicProperties properties,
              Buffer body)Publish a message. | 
| Completable | RabbitMQClient. rxBasicPublish(String exchange,
              String routingKey,
              Buffer body)Publish a message. | 
| Completable | RabbitMQClient. rxBasicPublishWithDeliveryTag(String exchange,
                             String routingKey,
                             com.rabbitmq.client.BasicProperties properties,
                             Buffer body,
                             Handler<Long> deliveryTagHandler)Publish a message. | 
| Completable | RabbitMQPublisher. rxPublish(String exchange,
         String routingKey,
         com.rabbitmq.client.BasicProperties properties,
         Buffer body)Publish a message. | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | Response. toBuffer()Get this response as Buffer. | 
| Modifier and Type | Method and Description | 
|---|---|
| Request | Request. arg(Buffer arg)Adds a String key argument | 
| Modifier and Type | Method and Description | 
|---|---|
| Buffer | Tuple. getBuffer(int pos)Get a buffer value at  pos. | 
| Buffer | Row. getBuffer(String column)Get a buffer value for the given  column. | 
| Modifier and Type | Method and Description | 
|---|---|
| Tuple | Tuple. addBuffer(Buffer value)Add a buffer value at the end of the tuple. | 
Copyright © 2022 Eclipse. All rights reserved.