Uses of Class
io.vertx.mutiny.core.buffer.Buffer
-
Packages that use Buffer Package Description io.vertx.mutiny.core.buffer io.vertx.mutiny.core.datagram io.vertx.mutiny.core.file io.vertx.mutiny.core.http io.vertx.mutiny.core.net io.vertx.mutiny.core.parsetools -
-
Uses of Buffer in io.vertx.mutiny.core.buffer
Fields in io.vertx.mutiny.core.buffer with type parameters of type Buffer Modifier and Type Field Description static io.smallrye.mutiny.vertx.TypeArg<Buffer>Buffer. __TYPE_ARGMethods in io.vertx.mutiny.core.buffer that return Buffer Modifier and Type Method Description BufferBuffer. appendBuffer(Buffer buff)BufferBuffer. appendBuffer(Buffer buff, int offset, int len)BufferBuffer. appendByte(byte b)BufferBuffer. appendBytes(byte[] bytes)BufferBuffer. appendBytes(byte[] bytes, int offset, int len)BufferBuffer. appendDouble(double d)BufferBuffer. appendFloat(float f)BufferBuffer. appendInt(int i)BufferBuffer. appendIntLE(int i)BufferBuffer. appendLong(long l)BufferBuffer. appendLongLE(long l)BufferBuffer. appendMedium(int i)BufferBuffer. appendMediumLE(int i)BufferBuffer. appendShort(short s)BufferBuffer. appendShortLE(short s)BufferBuffer. appendString(String str)BufferBuffer. appendString(String str, String enc)BufferBuffer. appendUnsignedByte(short b)BufferBuffer. appendUnsignedInt(long i)BufferBuffer. appendUnsignedIntLE(long i)BufferBuffer. appendUnsignedShort(int s)BufferBuffer. appendUnsignedShortLE(int s)static BufferBuffer. buffer()static BufferBuffer. buffer(byte[] bytes)static BufferBuffer. buffer(int initialSizeHint)static BufferBuffer. buffer(io.netty.buffer.ByteBuf byteBuf)Deprecated.removed from public API in Vert.x 5static BufferBuffer. buffer(String string)static BufferBuffer. buffer(String string, String enc)BufferBuffer. copy()BufferBuffer. getBuffer(int start, int end)BufferBuffer. getBytes(byte[] dst)BufferBuffer. getBytes(byte[] dst, int dstIndex)BufferBuffer. getBytes(int start, int end, byte[] dst)BufferBuffer. getBytes(int start, int end, byte[] dst, int dstIndex)static BufferBuffer. newInstance(io.vertx.core.buffer.Buffer arg)BufferBuffer. setBuffer(int pos, Buffer b)BufferBuffer. setBuffer(int pos, Buffer b, int offset, int len)BufferBuffer. setByte(int pos, byte b)BufferBuffer. setBytes(int pos, byte[] b)BufferBuffer. setBytes(int pos, byte[] b, int offset, int len)BufferBuffer. setBytes(int pos, ByteBuffer b)BufferBuffer. setDouble(int pos, double d)BufferBuffer. setFloat(int pos, float f)BufferBuffer. setInt(int pos, int i)BufferBuffer. setIntLE(int pos, int i)BufferBuffer. setLong(int pos, long l)BufferBuffer. setLongLE(int pos, long l)BufferBuffer. setMedium(int pos, int i)BufferBuffer. setMediumLE(int pos, int i)BufferBuffer. setShort(int pos, short s)BufferBuffer. setShortLE(int pos, short s)BufferBuffer. setString(int pos, String str)BufferBuffer. setString(int pos, String str, String enc)BufferBuffer. setUnsignedByte(int pos, short b)BufferBuffer. setUnsignedInt(int pos, long i)BufferBuffer. setUnsignedIntLE(int pos, long i)BufferBuffer. setUnsignedShort(int pos, int s)BufferBuffer. setUnsignedShortLE(int pos, int s)BufferBuffer. slice()BufferBuffer. slice(int start, int end)Methods in io.vertx.mutiny.core.buffer with parameters of type Buffer Modifier and Type Method Description BufferBuffer. appendBuffer(Buffer buff)BufferBuffer. appendBuffer(Buffer buff, int offset, int len)BufferBuffer. setBuffer(int pos, Buffer b)BufferBuffer. setBuffer(int pos, Buffer b, int offset, int len) -
Uses of Buffer in io.vertx.mutiny.core.datagram
Methods in io.vertx.mutiny.core.datagram that return Buffer Modifier and Type Method Description BufferDatagramPacket. data()Methods in io.vertx.mutiny.core.datagram that return types with arguments of type Buffer Modifier and Type Method Description WriteStream<Buffer>DatagramSocket. sender(int port, String host)Methods in io.vertx.mutiny.core.datagram with parameters of type Buffer Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>DatagramSocket. send(Buffer packet, int port, String host)Write the givenBufferto theSocketAddress.VoidDatagramSocket. sendAndAwait(Buffer packet, int port, String host)Blocking variant ofDatagramSocket.send(io.vertx.mutiny.core.buffer.Buffer,int,String).DatagramSocketDatagramSocket. sendAndForget(Buffer packet, int port, String host)Variant ofDatagramSocket.send(io.vertx.mutiny.core.buffer.Buffer,int,String)that ignores the result of the operation. -
Uses of Buffer in io.vertx.mutiny.core.file
Methods in io.vertx.mutiny.core.file that return Buffer Modifier and Type Method Description BufferAsyncFile. readAndAwait(Buffer buffer, int offset, long position, int length)Blocking variant ofAsyncFile.read(io.vertx.mutiny.core.buffer.Buffer,int,long,int).BufferFileSystem. readFileAndAwait(String path)Blocking variant ofFileSystem.readFile(String).BufferFileSystem. readFileBlocking(String path)Methods in io.vertx.mutiny.core.file that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>AsyncFile. pipe()io.smallrye.mutiny.Uni<Buffer>AsyncFile. read(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.io.smallrye.mutiny.Uni<Buffer>FileSystem. readFile(String path)Reads the entire file as represented by the pathpathas a , asynchronously.Iterable<Buffer>AsyncFile. toBlockingIterable()Stream<Buffer>AsyncFile. toBlockingStream()io.smallrye.mutiny.Multi<Buffer>AsyncFile. toMulti()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>AsyncFile. toSubscriber()Methods in io.vertx.mutiny.core.file with parameters of type Buffer Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>AsyncFile. end(Buffer data)Same as but with anhandlercalled when the operation completesVoidAsyncFile. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).voidAsyncFile. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Buffer>AsyncFile. read(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.BufferAsyncFile. readAndAwait(Buffer buffer, int offset, long position, int length)Blocking variant ofAsyncFile.read(io.vertx.mutiny.core.buffer.Buffer,int,long,int).AsyncFileAsyncFile. readAndForget(Buffer buffer, int offset, long position, int length)Variant ofAsyncFile.read(io.vertx.mutiny.core.buffer.Buffer,int,long,int)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>AsyncFile. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>AsyncFile. write(Buffer buffer, long position)Write aBufferto the file at positionpositionin the file, asynchronously.VoidAsyncFile. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidAsyncFile. writeAndAwait(Buffer buffer, long position)Blocking variant ofAsyncFile.write(io.vertx.mutiny.core.buffer.Buffer,long).voidAsyncFile. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidAsyncFile. writeAndForget(Buffer buffer, long position)Variant ofAsyncFile.write(io.vertx.mutiny.core.buffer.Buffer,long)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>FileSystem. writeFile(String path, Buffer data)Creates the file, and writes the specifiedBuffer datato the file represented by the pathpath, asynchronously.VoidFileSystem. writeFileAndAwait(String path, Buffer data)Blocking variant ofFileSystem.writeFile(String,io.vertx.mutiny.core.buffer.Buffer).FileSystemFileSystem. writeFileAndForget(String path, Buffer data)Variant ofFileSystem.writeFile(String,io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.FileSystemFileSystem. writeFileBlocking(String path, Buffer data)Method parameters in io.vertx.mutiny.core.file with type arguments of type Buffer Modifier and Type Method Description AsyncFileAsyncFile. handler(Consumer<Buffer> handler)io.smallrye.mutiny.Uni<Void>AsyncFile. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.VoidAsyncFile. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidAsyncFile. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation. -
Uses of Buffer in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type Buffer Modifier and Type Field Description static io.smallrye.mutiny.vertx.TypeArg<Buffer>WebSocketBase. TYPE_ARG_0Methods in io.vertx.mutiny.core.http that return Buffer Modifier and Type Method Description BufferWebSocketFrame. binaryData()BufferHttpClientResponse. bodyAndAwait()Blocking variant ofHttpClientResponse.body().BufferHttpServerRequest. bodyAndAwait()Blocking variant ofHttpServerRequest.body().BufferHttpFrame. payload()BufferHttpConnection. pingAndAwait(Buffer data)Blocking variant ofHttpConnection.ping(io.vertx.mutiny.core.buffer.Buffer).Methods in io.vertx.mutiny.core.http that return types with arguments of type Buffer Modifier and Type Method Description io.smallrye.mutiny.Uni<Buffer>HttpClientResponse. body()Same asHttpClientResponse.body()but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Buffer>HttpServerRequest. body()Same asHttpServerRequest.body()but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Buffer>HttpConnection. ping(Buffer data)Send a frame to the remote endpoint.Pipe<Buffer>ClientWebSocket. pipe()Pipe<Buffer>HttpClientResponse. pipe()Pipe<Buffer>HttpServerFileUpload. pipe()Pipe<Buffer>HttpServerRequest. pipe()Pipe<Buffer>ServerWebSocket. pipe()Pipe<Buffer>WebSocket. pipe()Pipe<Buffer>WebSocketBase. pipe()Iterable<Buffer>ClientWebSocket. toBlockingIterable()Iterable<Buffer>HttpClientResponse. toBlockingIterable()Iterable<Buffer>HttpServerFileUpload. toBlockingIterable()Iterable<Buffer>HttpServerRequest. toBlockingIterable()Iterable<Buffer>ServerWebSocket. toBlockingIterable()Iterable<Buffer>WebSocket. toBlockingIterable()Stream<Buffer>ClientWebSocket. toBlockingStream()Stream<Buffer>HttpClientResponse. toBlockingStream()Stream<Buffer>HttpServerFileUpload. toBlockingStream()Stream<Buffer>HttpServerRequest. toBlockingStream()Stream<Buffer>ServerWebSocket. toBlockingStream()Stream<Buffer>WebSocket. toBlockingStream()io.smallrye.mutiny.Multi<Buffer>ClientWebSocket. toMulti()io.smallrye.mutiny.Multi<Buffer>HttpClientResponse. toMulti()io.smallrye.mutiny.Multi<Buffer>HttpServerFileUpload. toMulti()io.smallrye.mutiny.Multi<Buffer>HttpServerRequest. toMulti()io.smallrye.mutiny.Multi<Buffer>ServerWebSocket. toMulti()io.smallrye.mutiny.Multi<Buffer>WebSocket. toMulti()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>ClientWebSocket. toSubscriber()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>HttpClientRequest. toSubscriber()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>HttpServerResponse. toSubscriber()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>ServerWebSocket. toSubscriber()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>WebSocket. toSubscriber()Methods in io.vertx.mutiny.core.http with parameters of type Buffer Modifier and Type Method Description static WebSocketFrameWebSocketFrame. binaryFrame(Buffer data, boolean isFinal)static WebSocketFrameWebSocketFrame. continuationFrame(Buffer data, boolean isFinal)io.smallrye.mutiny.Uni<Void>ClientWebSocket. end(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>HttpClientRequest. end(Buffer chunk)Same asHttpClientRequest.end(java.lang.String)but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>HttpServerResponse. end(Buffer chunk)Same asHttpServerResponse.end()but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>ServerWebSocket. end(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>WebSocket. end(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>WebSocketBase. end(Buffer data)Same as but with anhandlercalled when the operation completesVoidClientWebSocket. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).VoidHttpClientRequest. endAndAwait(Buffer chunk)Blocking variant ofHttpClientRequest.end(io.vertx.mutiny.core.buffer.Buffer).VoidHttpServerResponse. endAndAwait(Buffer chunk)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).VoidServerWebSocket. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).VoidWebSocket. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).VoidWebSocketBase. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).voidClientWebSocket. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidHttpClientRequest. endAndForget(Buffer chunk)Variant ofHttpClientRequest.end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidHttpServerResponse. endAndForget(Buffer chunk)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidServerWebSocket. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidWebSocket. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidWebSocketBase. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.HttpConnectionHttpConnection. goAway(long errorCode, int lastStreamId, Buffer debugData)io.smallrye.mutiny.Uni<Buffer>HttpConnection. ping(Buffer data)Send a frame to the remote endpoint.BufferHttpConnection. pingAndAwait(Buffer data)Blocking variant ofHttpConnection.ping(io.vertx.mutiny.core.buffer.Buffer).HttpConnectionHttpConnection. pingAndForget(Buffer data)Variant ofHttpConnection.ping(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.static WebSocketFrameWebSocketFrame. pingFrame(Buffer data)static WebSocketFrameWebSocketFrame. pongFrame(Buffer data)io.smallrye.mutiny.Uni<HttpClientResponse>HttpClientRequest. send(Buffer body)Send the request with a bufferbody.io.smallrye.mutiny.Uni<Void>HttpServerResponse. send(Buffer body)Send the request with a bufferbody.HttpClientResponseHttpClientRequest. sendAndAwait(Buffer body)Blocking variant ofHttpClientRequest.send(io.vertx.mutiny.core.buffer.Buffer).VoidHttpServerResponse. sendAndAwait(Buffer body)Blocking variant ofHttpServerResponse.send(io.vertx.mutiny.core.buffer.Buffer).voidHttpClientRequest. sendAndForget(Buffer body)Variant ofHttpClientRequest.send(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidHttpServerResponse. sendAndForget(Buffer body)Variant ofHttpServerResponse.send(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>ClientWebSocket. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>HttpClientRequest. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>HttpServerResponse. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>ServerWebSocket. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>WebSocket. write(Buffer data)Same as but with anhandlercalled when the operation completesio.smallrye.mutiny.Uni<Void>WebSocketBase. write(Buffer data)Same as but with anhandlercalled when the operation completesVoidClientWebSocket. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidHttpClientRequest. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidHttpServerResponse. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidServerWebSocket. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidWebSocket. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).VoidWebSocketBase. writeAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).voidClientWebSocket. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidHttpClientRequest. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidHttpServerResponse. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidServerWebSocket. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidWebSocket. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.voidWebSocketBase. writeAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>ClientWebSocket. writeBinaryMessage(Buffer data)io.smallrye.mutiny.Uni<Void>ServerWebSocket. writeBinaryMessage(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocket. writeBinaryMessage(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocketBase. writeBinaryMessage(Buffer data)Same asWebSocketBase.writeBinaryMessage(io.vertx.mutiny.core.buffer.Buffer)but with anhandlercalled when the operation completesVoidClientWebSocket. writeBinaryMessageAndAwait(Buffer data)VoidServerWebSocket. writeBinaryMessageAndAwait(Buffer data)VoidWebSocket. writeBinaryMessageAndAwait(Buffer data)VoidWebSocketBase. writeBinaryMessageAndAwait(Buffer data)Blocking variant ofWebSocketBase.writeBinaryMessage(io.vertx.mutiny.core.buffer.Buffer).ClientWebSocketClientWebSocket. writeBinaryMessageAndForget(Buffer data)ServerWebSocketServerWebSocket. writeBinaryMessageAndForget(Buffer data)WebSocketWebSocket. writeBinaryMessageAndForget(Buffer data)WebSocketBaseWebSocketBase. writeBinaryMessageAndForget(Buffer data)Variant ofWebSocketBase.writeBinaryMessage(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.HttpClientRequestHttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)HttpServerResponseHttpServerResponse. writeCustomFrame(int type, int flags, Buffer payload)io.smallrye.mutiny.Uni<Void>ClientWebSocket. writeFinalBinaryFrame(Buffer data)io.smallrye.mutiny.Uni<Void>ServerWebSocket. writeFinalBinaryFrame(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocket. writeFinalBinaryFrame(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocketBase. writeFinalBinaryFrame(Buffer data)Same asWebSocketBase.writeFinalBinaryFrame(io.vertx.mutiny.core.buffer.Buffer)but with anhandlercalled when the operation completesVoidClientWebSocket. writeFinalBinaryFrameAndAwait(Buffer data)VoidServerWebSocket. writeFinalBinaryFrameAndAwait(Buffer data)VoidWebSocket. writeFinalBinaryFrameAndAwait(Buffer data)VoidWebSocketBase. writeFinalBinaryFrameAndAwait(Buffer data)Blocking variant ofWebSocketBase.writeFinalBinaryFrame(io.vertx.mutiny.core.buffer.Buffer).ClientWebSocketClientWebSocket. writeFinalBinaryFrameAndForget(Buffer data)ServerWebSocketServerWebSocket. writeFinalBinaryFrameAndForget(Buffer data)WebSocketWebSocket. writeFinalBinaryFrameAndForget(Buffer data)WebSocketBaseWebSocketBase. writeFinalBinaryFrameAndForget(Buffer data)Variant ofWebSocketBase.writeFinalBinaryFrame(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>ClientWebSocket. writePing(Buffer data)io.smallrye.mutiny.Uni<Void>ServerWebSocket. writePing(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocket. writePing(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocketBase. writePing(Buffer data)Writes a ping frame to the connection.VoidClientWebSocket. writePingAndAwait(Buffer data)VoidServerWebSocket. writePingAndAwait(Buffer data)VoidWebSocket. writePingAndAwait(Buffer data)VoidWebSocketBase. writePingAndAwait(Buffer data)Blocking variant ofWebSocketBase.writePing(io.vertx.mutiny.core.buffer.Buffer).ClientWebSocketClientWebSocket. writePingAndForget(Buffer data)ServerWebSocketServerWebSocket. writePingAndForget(Buffer data)WebSocketWebSocket. writePingAndForget(Buffer data)WebSocketBaseWebSocketBase. writePingAndForget(Buffer data)Variant ofWebSocketBase.writePing(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>ClientWebSocket. writePong(Buffer data)io.smallrye.mutiny.Uni<Void>ServerWebSocket. writePong(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocket. writePong(Buffer data)io.smallrye.mutiny.Uni<Void>WebSocketBase. writePong(Buffer data)Writes a pong frame to the connection.VoidClientWebSocket. writePongAndAwait(Buffer data)VoidServerWebSocket. writePongAndAwait(Buffer data)VoidWebSocket. writePongAndAwait(Buffer data)VoidWebSocketBase. writePongAndAwait(Buffer data)Blocking variant ofWebSocketBase.writePong(io.vertx.mutiny.core.buffer.Buffer).ClientWebSocketClientWebSocket. writePongAndForget(Buffer data)ServerWebSocketServerWebSocket. writePongAndForget(Buffer data)WebSocketWebSocket. writePongAndForget(Buffer data)WebSocketBaseWebSocketBase. writePongAndForget(Buffer data)Variant ofWebSocketBase.writePong(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.Method parameters in io.vertx.mutiny.core.http with type arguments of type Buffer Modifier and Type Method Description ClientWebSocketClientWebSocket. binaryMessageHandler(Consumer<Buffer> handler)WebSocketBaseServerWebSocket. binaryMessageHandler(Consumer<Buffer> handler)WebSocketBaseWebSocket. binaryMessageHandler(Consumer<Buffer> handler)WebSocketBaseWebSocketBase. binaryMessageHandler(Consumer<Buffer> handler)HttpClientResponseHttpClientResponse. bodyHandler(Consumer<Buffer> bodyHandler)HttpServerRequestHttpServerRequest. bodyHandler(Consumer<Buffer> bodyHandler)ClientWebSocketClientWebSocket. handler(Consumer<Buffer> handler)HttpClientResponseHttpClientResponse. handler(Consumer<Buffer> handler)HttpServerFileUploadHttpServerFileUpload. handler(Consumer<Buffer> handler)HttpServerRequestHttpServerRequest. handler(Consumer<Buffer> handler)ServerWebSocketServerWebSocket. handler(Consumer<Buffer> handler)WebSocketWebSocket. handler(Consumer<Buffer> handler)WebSocketBaseWebSocketBase. handler(Consumer<Buffer> handler)HttpConnectionHttpConnection. pingHandler(Consumer<Buffer> handler)io.smallrye.mutiny.Uni<Void>ClientWebSocket. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>HttpClientResponse. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>HttpServerFileUpload. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>HttpServerRequest. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>ServerWebSocket. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>WebSocket. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.io.smallrye.mutiny.Uni<Void>WebSocketBase. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.VoidClientWebSocket. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidHttpClientResponse. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidHttpServerFileUpload. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidHttpServerRequest. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidServerWebSocket. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidWebSocket. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).VoidWebSocketBase. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidClientWebSocket. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidHttpClientResponse. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidHttpServerFileUpload. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidHttpServerRequest. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidServerWebSocket. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidWebSocket. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidWebSocketBase. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.ClientWebSocketClientWebSocket. pongHandler(Consumer<Buffer> handler)WebSocketBaseServerWebSocket. pongHandler(Consumer<Buffer> handler)WebSocketBaseWebSocket. pongHandler(Consumer<Buffer> handler)WebSocketBaseWebSocketBase. pongHandler(Consumer<Buffer> handler)io.smallrye.mutiny.Uni<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.io.smallrye.mutiny.Uni<HttpClientResponse>HttpClientRequest. send(Flow.Publisher<Buffer> body)Send the request with a streambody.io.smallrye.mutiny.Uni<Void>HttpServerResponse. send(ReadStream<Buffer> body)Send the request with a streambody.io.smallrye.mutiny.Uni<Void>HttpServerResponse. send(Flow.Publisher<Buffer> body)Send the request with a streambody.HttpClientResponseHttpClientRequest. sendAndAwait(ReadStream<Buffer> body)Blocking variant ofHttpClientRequest.send(io.vertx.mutiny.core.streams.ReadStream).HttpClientResponseHttpClientRequest. sendAndAwait(Flow.Publisher<Buffer> body)Blocking variant ofio.vertx.mutiny.core.http.HttpClientRequest#send(Flow$Publisher).VoidHttpServerResponse. sendAndAwait(ReadStream<Buffer> body)Blocking variant ofHttpServerResponse.send(io.vertx.mutiny.core.streams.ReadStream).VoidHttpServerResponse. sendAndAwait(Flow.Publisher<Buffer> body)Blocking variant ofio.vertx.mutiny.core.http.HttpServerResponse#send(Flow$Publisher).voidHttpClientRequest. sendAndForget(ReadStream<Buffer> body)Variant ofHttpClientRequest.send(io.vertx.mutiny.core.streams.ReadStream)that ignores the result of the operation.voidHttpClientRequest. sendAndForget(Flow.Publisher<Buffer> body)Variant ofio.vertx.mutiny.core.http.HttpClientRequest#send(Flow$Publisher)that ignores the result of the operation.voidHttpServerResponse. sendAndForget(ReadStream<Buffer> body)Variant ofHttpServerResponse.send(io.vertx.mutiny.core.streams.ReadStream)that ignores the result of the operation.voidHttpServerResponse. sendAndForget(Flow.Publisher<Buffer> body)Variant ofio.vertx.mutiny.core.http.HttpServerResponse#send(Flow$Publisher)that ignores the result of the operation. -
Uses of Buffer in io.vertx.mutiny.core.net
Methods in io.vertx.mutiny.core.net that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>NetSocket. pipe()Iterable<Buffer>NetSocket. toBlockingIterable()Stream<Buffer>NetSocket. toBlockingStream()io.smallrye.mutiny.Multi<Buffer>NetSocket. toMulti()io.smallrye.mutiny.vertx.WriteStreamSubscriber<Buffer>NetSocket. toSubscriber()Methods in io.vertx.mutiny.core.net with parameters of type Buffer Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>NetSocket. end(Buffer data)Same as but with anhandlercalled when the operation completesVoidNetSocket. endAndAwait(Buffer data)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer).voidNetSocket. endAndForget(Buffer data)Variant ofio.vertx.mutiny.core.streams.WriteStream#end(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>NetSocket. write(Buffer message)LikeWriteStream.write(T)but with anhandlercalled when the message has been written or failed to be written.VoidNetSocket. writeAndAwait(Buffer message)Blocking variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer).voidNetSocket. writeAndForget(Buffer message)Variant ofio.vertx.mutiny.core.streams.WriteStream#write(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.Method parameters in io.vertx.mutiny.core.net with type arguments of type Buffer Modifier and Type Method Description NetSocketNetSocket. handler(Consumer<Buffer> handler)io.smallrye.mutiny.Uni<Void>NetSocket. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.VoidNetSocket. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidNetSocket. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation. -
Uses of Buffer in io.vertx.mutiny.core.parsetools
Methods in io.vertx.mutiny.core.parsetools that return Buffer Modifier and Type Method Description BufferJsonEvent. binaryValue()Methods in io.vertx.mutiny.core.parsetools that return types with arguments of type Buffer Modifier and Type Method Description Pipe<Buffer>RecordParser. pipe()Iterable<Buffer>RecordParser. toBlockingIterable()Stream<Buffer>RecordParser. toBlockingStream()io.smallrye.mutiny.Multi<Buffer>RecordParser. toMulti()Methods in io.vertx.mutiny.core.parsetools with parameters of type Buffer Modifier and Type Method Description voidJsonParser. accept(Buffer item)voidRecordParser. accept(Buffer item)voidRecordParser. delimitedMode(Buffer delim)voidJsonParser. handle(Buffer event)voidRecordParser. handle(Buffer buffer)static RecordParserRecordParser. newDelimited(Buffer delim)static RecordParserRecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)static RecordParserRecordParser. newDelimited(Buffer delim, Flow.Publisher<Buffer> stream)static RecordParserRecordParser. newDelimited(Buffer delim, Consumer<Buffer> output)JsonParserJsonParser. write(Buffer buffer)Method parameters in io.vertx.mutiny.core.parsetools with type arguments of type Buffer Modifier and Type Method Description RecordParserRecordParser. handler(Consumer<Buffer> handler)static RecordParserRecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)static RecordParserRecordParser. newDelimited(Buffer delim, Flow.Publisher<Buffer> stream)static RecordParserRecordParser. newDelimited(Buffer delim, Consumer<Buffer> output)static RecordParserRecordParser. newDelimited(String delim, ReadStream<Buffer> stream)static RecordParserRecordParser. newDelimited(String delim, Flow.Publisher<Buffer> stream)static RecordParserRecordParser. newDelimited(String delim, Consumer<Buffer> output)static RecordParserRecordParser. newFixed(int size, ReadStream<Buffer> stream)static RecordParserRecordParser. newFixed(int size, Flow.Publisher<Buffer> stream)static RecordParserRecordParser. newFixed(int size, Consumer<Buffer> output)static JsonParserJsonParser. newParser(ReadStream<Buffer> stream)static JsonParserJsonParser. newParser(Flow.Publisher<Buffer> stream)io.smallrye.mutiny.Uni<Void>RecordParser. pipeTo(WriteStream<Buffer> dst)Pipe thisReadStreamto theWriteStream.VoidRecordParser. pipeToAndAwait(WriteStream<Buffer> dst)Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidRecordParser. pipeToAndForget(WriteStream<Buffer> dst)Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.voidRecordParser. setOutput(Consumer<Buffer> output)
-