Uses of Interface
io.vertx.core.buffer.Buffer
-
-
Uses of Buffer in io.vertx.core.buffer
Methods in io.vertx.core.buffer that return Buffer Modifier and Type Method Description BufferBuffer. appendBuffer(Buffer buff)Appends the specifiedBufferto the end of this Buffer.BufferBuffer. appendBuffer(Buffer buff, int offset, int len)Appends the specifiedBufferstarting at theoffsetusinglento the end of this Buffer.BufferBuffer. appendByte(byte b)Appends the specifiedbyteto the end of the Buffer.BufferBuffer. appendBytes(byte[] bytes)Appends the specifiedbyte[]to the end of the Buffer.BufferBuffer. appendBytes(byte[] bytes, int offset, int len)Appends the specified number of bytes frombyte[]to the end of the Buffer, starting at the given offset.BufferBuffer. appendDouble(double d)Appends the specifieddoubleto the end of the Buffer.BufferBuffer. appendDoubleLE(double d)Appends the specified unsigneddoubleto the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.BufferBuffer. appendFloat(float f)Appends the specifiedfloatto the end of the Buffer.BufferBuffer. appendFloatLE(float f)Appends the specified unsignedfloatto the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.BufferBuffer. appendInt(int i)Appends the specifiedintto the end of the Buffer.BufferBuffer. appendIntLE(int i)Appends the specifiedintto the end of the Buffer in the Little Endian Byte Order.BufferBuffer. appendLong(long l)Appends the specifiedlongto the end of the Buffer.BufferBuffer. appendLongLE(long l)Appends the specifiedlongto the end of the Buffer in the Little Endian Byte Order.BufferBuffer. appendMedium(int i)Appends the specified 24bitintto the end of the Buffer.BufferBuffer. appendMediumLE(int i)Appends the specified 24bitintto the end of the Buffer in the Little Endian Byte Order.BufferBuffer. appendShort(short s)Appends the specifiedshortto the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written.BufferBuffer. appendShortLE(short s)Appends the specifiedshortto the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.BufferBuffer. appendString(String str)Appends the specifiedString strto the end of the Buffer with UTF-8 encoding.BufferBuffer. appendString(String str, String enc)Appends the specifiedStringto the end of the Buffer with the encoding as specified byenc.BufferBuffer. appendUnsignedByte(short b)Appends the specified unsignedbyteto the end of the Buffer.BufferBuffer. appendUnsignedInt(long i)Appends the specified unsignedintto the end of the Buffer.BufferBuffer. appendUnsignedIntLE(long i)Appends the specified unsignedintto the end of the Buffer in the Little Endian Byte Order.BufferBuffer. appendUnsignedShort(int s)Appends the specified unsignedshortto the end of the Buffer.The buffer will expand as necessary to accommodate any bytes written.BufferBuffer. appendUnsignedShortLE(int s)Appends the specified unsignedshortto the end of the Buffer in the Little Endian Byte Order.The buffer will expand as necessary to accommodate any bytes written.static BufferBuffer. buffer()Create a new, empty buffer.static BufferBuffer. buffer(byte[] bytes)Create a new buffer from a byte[].static BufferBuffer. buffer(int initialSizeHint)Create a new buffer given the initial size hint.static BufferBuffer. buffer(String string)Create a new buffer from a string.static BufferBuffer. buffer(String string, String enc)Create a new buffer from a string and using the specified encoding.BufferBuffer. copy()Returns a copy of the entire Buffer.static BufferBuffer. fromJson(String value)Create a buffer from the base 64 URL encodedvalueBufferBuffer. getBuffer(int start, int end)Returns a copy of a sub-sequence the Buffer as aBufferstarting at positionstartand ending at positionend - 1BufferBuffer. getBytes(byte[] dst)Transfers the content of the Buffer into abyte[].BufferBuffer. getBytes(byte[] dst, int dstIndex)Transfers the content of the Buffer into abyte[]at the specific destination.BufferBuffer. getBytes(int start, int end, byte[] dst)Transfers the content of the Buffer starting at positionstartand ending at positionend - 1into abyte[].BufferBuffer. getBytes(int start, int end, byte[] dst, int dstIndex)Transfers the content of the Buffer starting at positionstartand ending at positionend - 1into abyte[]at the specific destination.BufferBuffer. setBuffer(int pos, Buffer b)Sets the bytes at positionposin the Buffer to the bytes represented by theBuffer b.BufferBuffer. setBuffer(int pos, Buffer b, int offset, int len)Sets the bytes at positionposin the Buffer to the bytes represented by theBuffer bon the givenoffsetandlen.BufferBuffer. setByte(int pos, byte b)Sets thebyteat positionposin the Buffer to the valueb.BufferBuffer. setBytes(int pos, byte[] b)Sets the bytes at positionposin the Buffer to the bytes represented by thebyte[] b.BufferBuffer. setBytes(int pos, byte[] b, int offset, int len)Sets the given number of bytes at positionposin the Buffer to the bytes represented by thebyte[] b.BufferBuffer. setBytes(int pos, ByteBuffer b)Sets the bytes at positionposin the Buffer to the bytes represented by theByteBuffer b.BufferBuffer. setDouble(int pos, double d)Sets thedoubleat positionposin the Buffer to the valued.BufferBuffer. setDoubleLE(int pos, double d)Sets thedoubleat positionposin the Buffer to the valuedin the Little Endian Byte Order.BufferBuffer. setFloat(int pos, float f)Sets thefloatat positionposin the Buffer to the valuef.BufferBuffer. setFloatLE(int pos, float f)Sets thefloatat positionposin the Buffer to the valuefin the Little Endian Byte Order.BufferBuffer. setInt(int pos, int i)Sets theintat positionposin the Buffer to the valuei.BufferBuffer. setIntLE(int pos, int i)Sets theintat positionposin the Buffer to the valueiin the Little Endian Byte Order.BufferBuffer. setLong(int pos, long l)Sets thelongat positionposin the Buffer to the valuel.BufferBuffer. setLongLE(int pos, long l)Sets thelongat positionposin the Buffer to the valuelin the Little Endian Byte Order.BufferBuffer. setMedium(int pos, int i)Sets the 24bitintat positionposin the Buffer to the valuei.BufferBuffer. setMediumLE(int pos, int i)Sets the 24bitintat positionposin the Buffer to the valuei. in the Little Endian Byte OrderBufferBuffer. setShort(int pos, short s)Sets theshortat positionposin the Buffer to the values.BufferBuffer. setShortLE(int pos, short s)Sets theshortat positionposin the Buffer to the valuesin the Little Endian Byte Order.BufferBuffer. setString(int pos, String str)Sets the bytes at positionposin the Buffer to the value ofstrencoded in UTF-8.BufferBuffer. setString(int pos, String str, String enc)Sets the bytes at positionposin the Buffer to the value ofstrencoded in encodingenc.BufferBuffer. setUnsignedByte(int pos, short b)Sets the unsignedbyteat positionposin the Buffer to the valueb.BufferBuffer. setUnsignedInt(int pos, long i)Sets the unsignedintat positionposin the Buffer to the valuei.BufferBuffer. setUnsignedIntLE(int pos, long i)Sets the unsignedintat positionposin the Buffer to the valueiin the Little Endian Byte Order.BufferBuffer. setUnsignedShort(int pos, int s)Sets the unsignedshortat positionposin the Buffer to the values.BufferBuffer. setUnsignedShortLE(int pos, int s)Sets the unsignedshortat positionposin the Buffer to the valuesin the Little Endian Byte Order.BufferBuffer. slice()Returns a slice of this buffer.BufferBuffer. slice(int start, int end)Returns a slice of this buffer.Methods in io.vertx.core.buffer with parameters of type Buffer Modifier and Type Method Description BufferBuffer. appendBuffer(Buffer buff)Appends the specifiedBufferto the end of this Buffer.BufferBuffer. appendBuffer(Buffer buff, int offset, int len)Appends the specifiedBufferstarting at theoffsetusinglento the end of this Buffer.BufferBuffer. setBuffer(int pos, Buffer b)Sets the bytes at positionposin the Buffer to the bytes represented by theBuffer b.BufferBuffer. setBuffer(int pos, Buffer b, int offset, int len)Sets the bytes at positionposin the Buffer to the bytes represented by theBuffer bon the givenoffsetandlen. -
Uses of Buffer in io.vertx.core.datagram
Methods in io.vertx.core.datagram that return Buffer Modifier and Type Method Description BufferDatagramPacket. data()Returns the data of theDatagramPacketMethods in io.vertx.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.core.datagram with parameters of type Buffer Modifier and Type Method Description Future<Void>DatagramSocket. send(Buffer packet, int port, String host)Write the givenBufferto theSocketAddress. -
Uses of Buffer in io.vertx.core.dns
Methods in io.vertx.core.dns that return Buffer Modifier and Type Method Description BufferAddressResolverOptions. getHostsValue()Methods in io.vertx.core.dns with parameters of type Buffer Modifier and Type Method Description AddressResolverOptionsAddressResolverOptions. setHostsValue(Buffer hostsValue)Set an alternate hosts configuration file to use instead of the one provided by the os. -
Uses of Buffer in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus with parameters of type Buffer Modifier and Type Method Description EventBusOptionsEventBusOptions. addCrlValue(Buffer crlValue)RMessageCodec. decodeFromWire(int pos, Buffer buffer)Called by Vert.x when a message is decoded from the wire.voidMessageCodec. encodeToWire(Buffer buffer, S s)Called by Vert.x when marshalling a message to the wire. -
Uses of Buffer in io.vertx.core.file
Methods in io.vertx.core.file that return Buffer Modifier and Type Method Description BufferFileSystem. readFileBlocking(String path)Blocking version ofFileSystem.readFile(String)Methods in io.vertx.core.file that return types with arguments of type Buffer Modifier and Type Method Description Future<Buffer>AsyncFile. read(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.Future<Buffer>FileSystem. readFile(String path)Reads the entire file as represented by the pathpathas aBuffer, asynchronously.Methods in io.vertx.core.file with parameters of type Buffer Modifier and Type Method Description Future<Buffer>AsyncFile. read(Buffer buffer, int offset, long position, int length)Readslengthbytes of data from the file at positionpositionin the file, asynchronously.Future<Void>AsyncFile. write(Buffer buffer, long position)Write aBufferto the file at positionpositionin the file, asynchronously.Future<Void>FileSystem. writeFile(String path, Buffer data)Creates the file, and writes the specifiedBuffer datato the file represented by the pathpath, asynchronously.FileSystemFileSystem. writeFileBlocking(String path, Buffer data)Blocking version ofFileSystem.writeFile(String, Buffer)Method parameters in io.vertx.core.file with type arguments of type Buffer Modifier and Type Method Description AsyncFileAsyncFile. handler(Handler<Buffer> handler) -
Uses of Buffer in io.vertx.core.http
Methods in io.vertx.core.http that return Buffer Modifier and Type Method Description BufferWebSocketFrame. binaryData()BufferUpgradeRejectedException. getBody()BufferGoAway. getDebugData()BufferHttpFrame. payload()Methods in io.vertx.core.http that return types with arguments of type Buffer Modifier and Type Method Description Future<Buffer>HttpClientResponse. body()Convenience method for receiving the entire request body in one piece.Future<Buffer>HttpServerRequest. body()Convenience method for receiving the entire request body in one piece.Future<Buffer>HttpConnection. ping(Buffer data)Send a PING frame to the remote endpoint.Methods in io.vertx.core.http with parameters of type Buffer Modifier and Type Method Description HttpClientOptionsHttpClientOptions. addCrlValue(Buffer crlValue)HttpServerOptionsHttpServerOptions. addCrlValue(Buffer crlValue)WebSocketClientOptionsWebSocketClientOptions. addCrlValue(Buffer crlValue)ClientMultipartFormClientMultipartForm. binaryFileUpload(String name, String filename, String mediaType, Buffer content)Add a binary file upload form data part.static WebSocketFrameWebSocketFrame. binaryFrame(Buffer data, boolean isFinal)Create a binary WebSocket frame.static WebSocketFrameWebSocketFrame. continuationFrame(Buffer data, boolean isFinal)Create a continuation frameFuture<Void>HttpClientRequest. end(Buffer chunk)Same asHttpClientRequest.end()but writes some data to the request body before ending.Future<Void>HttpServerResponse. end(Buffer chunk)Same asHttpServerResponse.end()but writes some data to the response body before ending.HttpConnectionHttpConnection. goAway(long errorCode, int lastStreamId, Buffer debugData)Send a go away frame to the remote endpoint of the connection.Future<Buffer>HttpConnection. ping(Buffer data)Send a PING frame to the remote endpoint.static WebSocketFrameWebSocketFrame. pingFrame(Buffer data)Create a ping WebSocket frame.static WebSocketFrameWebSocketFrame. pongFrame(Buffer data)Create a pong WebSocket frame.default Future<HttpClientResponse>HttpClientRequest. send(Buffer body)Send the request with a bufferbody.default Future<Void>HttpServerResponse. send(Buffer body)Send the request with a bufferbody.GoAwayGoAway. setDebugData(Buffer debugData)Set the additional debug dataClientMultipartFormClientMultipartForm. textFileUpload(String name, String filename, String mediaType, Buffer content)Add a text file upload form data part.Future<Void>WebSocketBase. writeBinaryMessage(Buffer data)Writes a (potentially large) piece of binary data to the connection.Future<Void>HttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)Write an HTTP/2 frame to the request, allowing to extend the HTTP/2 protocol.Future<Void>HttpServerResponse. writeCustomFrame(int type, int flags, Buffer payload)Write an HTTP/2 frame to the response, allowing to extend the HTTP/2 protocol.Future<Void>WebSocketBase. writeFinalBinaryFrame(Buffer data)Write a final WebSocket binary frame to the connectionFuture<Void>WebSocketBase. writePing(Buffer data)Writes a ping frame to the connection.Future<Void>WebSocketBase. writePong(Buffer data)Writes a pong frame to the connection.Method parameters in io.vertx.core.http with type arguments of type Buffer Modifier and Type Method Description ClientWebSocketClientWebSocket. binaryMessageHandler(Handler<Buffer> handler)WebSocketWebSocket. binaryMessageHandler(Handler<Buffer> handler)WebSocketBaseWebSocketBase. binaryMessageHandler(Handler<Buffer> handler)Set a binary message handler on the connection.default HttpClientResponseHttpClientResponse. bodyHandler(Handler<Buffer> bodyHandler)Convenience method for receiving the entire request body in one piece.default HttpServerRequestHttpServerRequest. bodyHandler(Handler<Buffer> bodyHandler)Convenience method for receiving the entire request body in one piece.ClientWebSocketClientWebSocket. handler(Handler<Buffer> handler)HttpClientResponseHttpClientResponse. handler(Handler<Buffer> handler)HttpServerFileUploadHttpServerFileUpload. handler(Handler<Buffer> handler)HttpServerRequestHttpServerRequest. handler(Handler<Buffer> handler)ServerWebSocketServerWebSocket. handler(Handler<Buffer> handler)WebSocketWebSocket. handler(Handler<Buffer> handler)WebSocketBaseWebSocketBase. handler(Handler<Buffer> handler)HttpConnectionHttpConnection. pingHandler(Handler<Buffer> handler)Set an handler notified when a PING frame is received from the remote endpoint.ClientWebSocketClientWebSocket. pongHandler(Handler<Buffer> handler)WebSocketWebSocket. pongHandler(Handler<Buffer> handler)WebSocketBaseWebSocketBase. pongHandler(Handler<Buffer> handler)Set a pong frame handler on the connection.default Future<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.default Future<Void>HttpServerResponse. send(ReadStream<Buffer> body)Send the request with a streambody.Constructors in io.vertx.core.http with parameters of type Buffer Constructor Description UpgradeRejectedException(String message, int status, MultiMap headers, Buffer content) -
Uses of Buffer in io.vertx.core.json
Methods in io.vertx.core.json that return Buffer Modifier and Type Method Description static BufferJson. encodeToBuffer(Object obj)Encode a POJO to JSON using the underlying Jackson mapper.BufferJsonArray. getBuffer(int pos)Get the Buffer at positionposin the array.BufferJsonObject. getBuffer(String key)Get theBuffervalue with the specified key.BufferJsonObject. getBuffer(String key, Buffer def)LikeJsonObject.getBuffer(String)but specifying a default value to return if there is no entry.BufferJsonArray. toBuffer()Encode this JSON object as buffer.BufferJsonObject. toBuffer()Encode this JSON object as buffer.Methods in io.vertx.core.json with parameters of type Buffer Modifier and Type Method Description static ObjectJson. decodeValue(Buffer buf)Decode a given JSON buffer.static <T> TJson. decodeValue(Buffer buf, Class<T> clazz)Decode a given JSON buffer to a POJO of the given class type.BufferJsonObject. getBuffer(String key, Buffer def)LikeJsonObject.getBuffer(String)but specifying a default value to return if there is no entry.intJsonArray. readFromBuffer(int pos, Buffer buffer)intJsonObject. readFromBuffer(int pos, Buffer buffer)voidJsonArray. writeToBuffer(Buffer buffer)voidJsonObject. writeToBuffer(Buffer buffer)Constructors in io.vertx.core.json with parameters of type Buffer Constructor Description JsonArray(Buffer buf)Create an instance from a Buffer of JSON.JsonObject(Buffer buf)Create an instance from a buffer. -
Uses of Buffer in io.vertx.core.json.jackson
Methods in io.vertx.core.json.jackson that return Buffer Modifier and Type Method Description BufferDatabindCodec. toBuffer(Object object, boolean pretty)BufferJacksonCodec. toBuffer(Object object, boolean pretty)Methods in io.vertx.core.json.jackson with parameters of type Buffer Modifier and Type Method Description static com.fasterxml.jackson.core.JsonParserJacksonCodec. createParser(Buffer buf)<T> TDatabindCodec. fromBuffer(Buffer buf, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)<T> TDatabindCodec. fromBuffer(Buffer buf, Class<T> clazz)ObjectJacksonCodec. fromBuffer(Buffer buf)<T> TJacksonCodec. fromBuffer(Buffer json, Class<T> clazz) -
Uses of Buffer in io.vertx.core.net
Methods in io.vertx.core.net that return Buffer Modifier and Type Method Description BufferPemKeyCertOptions. getCertValue()Get the first certificate as a bufferBufferPemKeyCertOptions. getKeyValue()Get the first key as a bufferBufferKeyStoreOptionsBase. getValue()Get the key store as a bufferMethods in io.vertx.core.net that return types with arguments of type Buffer Modifier and Type Method Description List<Buffer>PemKeyCertOptions. getCertValues()Get all the certificates as a list of bufferList<Buffer>PemTrustOptions. getCertValues()List<Buffer>SSLOptions. getCrlValues()Get the CRL valuesList<Buffer>TCPSSLOptions. getCrlValues()Get the CRL valuesList<Buffer>PemKeyCertOptions. getKeyValues()Get all the keys as a list of bufferMethods in io.vertx.core.net with parameters of type Buffer Modifier and Type Method Description PemKeyCertOptionsPemKeyCertOptions. addCertValue(Buffer certValue)Add a certificate as a bufferPemTrustOptionsPemTrustOptions. addCertValue(Buffer certValue)Add a certificate valueClientOptionsBaseClientOptionsBase. addCrlValue(Buffer crlValue)NetClientOptionsNetClientOptions. addCrlValue(Buffer crlValue)NetServerOptionsNetServerOptions. addCrlValue(Buffer crlValue)ServerSSLOptionsServerSSLOptions. addCrlValue(Buffer crlValue)SSLOptionsSSLOptions. addCrlValue(Buffer crlValue)Add a CRL valueTCPSSLOptionsTCPSSLOptions. addCrlValue(Buffer crlValue)Add a CRL valuePemKeyCertOptionsPemKeyCertOptions. addKeyValue(Buffer keyValue)Add a key as a bufferPemKeyCertOptionsPemKeyCertOptions. setCertValue(Buffer certValue)Set the first certificate as a buffer, replacing the previous certificates buffersPemKeyCertOptionsPemKeyCertOptions. setKeyValue(Buffer keyValue)Set the first key a a buffer, replacing the previous keys buffersJksOptionsJksOptions. setValue(Buffer value)Set the key store as a bufferKeyStoreOptionsKeyStoreOptions. setValue(Buffer value)KeyStoreOptionsBaseKeyStoreOptionsBase. setValue(Buffer value)Set the key store as a bufferPfxOptionsPfxOptions. setValue(Buffer value)Set the key store as a bufferdefault Future<Void>NetSocket. upgradeToSsl(Buffer msg)LikeNetSocket.upgradeToSsl(SSLOptions, String, Buffer)with the default SSL options and without indicating a server name.default Future<Void>NetSocket. upgradeToSsl(SSLOptions sslOptions, Buffer msg)LikeNetSocket.upgradeToSsl(SSLOptions, String, Buffer)without indicating a server nameFuture<Void>NetSocket. upgradeToSsl(SSLOptions sslOptions, String serverName, Buffer upgrade)Upgrade the channel to use SSL/TLS, in other words proceeds to the TLS handshake.default Future<Void>NetSocket. upgradeToSsl(String serverName, Buffer msg)LikeNetSocket.upgradeToSsl(SSLOptions, String, Buffer)with the default SSL options.Method parameters in io.vertx.core.net with type arguments of type Buffer Modifier and Type Method Description NetSocketNetSocket. handler(Handler<Buffer> handler)PemKeyCertOptionsPemKeyCertOptions. setCertValues(List<Buffer> certValues)Set all the certificates as a list of bufferPemKeyCertOptionsPemKeyCertOptions. setKeyValues(List<Buffer> keyValues)Set all the keys as a list of buffer -
Uses of Buffer in io.vertx.core.parsetools
Methods in io.vertx.core.parsetools that return Buffer Modifier and Type Method Description BufferJsonEvent. binaryValue()Return the binary value.Methods in io.vertx.core.parsetools with parameters of type Buffer Modifier and Type Method Description voidRecordParser. delimitedMode(Buffer delim)Flip the parser into delimited mode, and where the delimiter can be represented by the delimiterdelim.voidRecordParser. handle(Buffer buffer)This method is called to provide the parser with data.static RecordParserRecordParser. newDelimited(Buffer delim)Create a newRecordParserinstance, initially in delimited mode, and where the delimiter can be represented by theBufferdelim.static RecordParserRecordParser. newDelimited(Buffer delim, Handler<Buffer> output)LikeRecordParser.newDelimited(Buffer)but set theoutputthat will receive whole records which have been parsed.static RecordParserRecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)LikeRecordParser.newDelimited(Buffer)but wraps thestream.JsonParserJsonParser. write(Buffer buffer)Handle aBuffer, pretty much like callingHandler.handle(Object).Method parameters in io.vertx.core.parsetools with type arguments of type Buffer Modifier and Type Method Description RecordParserRecordParser. handler(Handler<Buffer> handler)static RecordParserRecordParser. newDelimited(Buffer delim, Handler<Buffer> output)LikeRecordParser.newDelimited(Buffer)but set theoutputthat will receive whole records which have been parsed.static RecordParserRecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)LikeRecordParser.newDelimited(Buffer)but wraps thestream.static RecordParserRecordParser. newDelimited(String delim, Handler<Buffer> output)LikeRecordParser.newDelimited(String)but set theoutputthat will receive whole records which have been parsed.static RecordParserRecordParser. newDelimited(String delim, ReadStream<Buffer> stream)LikeRecordParser.newDelimited(String)but wraps thestream.static RecordParserRecordParser. newFixed(int size, Handler<Buffer> output)LikeRecordParser.newFixed(int)but set theoutputthat will receive whole records which have been parsed.static RecordParserRecordParser. newFixed(int size, ReadStream<Buffer> stream)LikeRecordParser.newFixed(int)but wraps thestream.static JsonParserJsonParser. newParser(ReadStream<Buffer> stream)Create a newJsonParserinstance.voidRecordParser. setOutput(Handler<Buffer> output) -
Uses of Buffer in io.vertx.core.shareddata
Methods in io.vertx.core.shareddata with parameters of type Buffer Modifier and Type Method Description intClusterSerializable. readFromBuffer(int pos, Buffer buffer)Method invoked when deserializing bytes to this instance.voidClusterSerializable. writeToBuffer(Buffer buffer)Method invoked when serializing this instance. -
Uses of Buffer in io.vertx.core.spi.cluster
Methods in io.vertx.core.spi.cluster with parameters of type Buffer Modifier and Type Method Description intNodeInfo. readFromBuffer(int start, Buffer buffer)intRegistrationInfo. readFromBuffer(int start, Buffer buffer)voidNodeInfo. writeToBuffer(Buffer buffer)voidRegistrationInfo. writeToBuffer(Buffer buffer) -
Uses of Buffer in io.vertx.core.spi.json
Methods in io.vertx.core.spi.json that return Buffer Modifier and Type Method Description default BufferJsonCodec. toBuffer(Object object)LikeJsonCodec.toString(Object)but with a jsonBufferBufferJsonCodec. toBuffer(Object object, boolean pretty)LikeJsonCodec.toString(Object, boolean)but with a jsonBufferMethods in io.vertx.core.spi.json with parameters of type Buffer Modifier and Type Method Description <T> TJsonCodec. fromBuffer(Buffer json, Class<T> clazz)LikeJsonCodec.fromString(String, Class)but with a jsonBuffer
-