Java io.vertx.core.parsetools RecordParser fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core.parsetools RecordParser fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core.parsetools RecordParser.

The text is from its open source code.

Method

voidfixedSizeMode(int size)
Flip the parser into fixed size mode, where the record size is specified by size in bytes.
voidhandle(Buffer buffer)
This method is called to provide the parser with data.
RecordParsernewDelimited(String delim, Handler output)
Like #newDelimited(String) but set the output that will receive whole records which have been parsed.
RecordParsernewDelimited(String delim, ReadStream stream)
Like #newDelimited(String) but wraps the stream .
RecordParsernewDelimited(Buffer delim, Handler output)
Like #newDelimited(Buffer) but set the output that will receive whole records which have been parsed.
RecordParsernewDelimited(Buffer delim, ReadStream stream)
Like #newDelimited(Buffer) but wraps the stream .
RecordParsernewFixed(int size, Handler output)
Like #newFixed(int) but set the output that will receive whole records which have been parsed.
RecordParsernewFixed(int size, ReadStream stream)
Like #newFixed(int) but wraps the stream .
voidsetOutput(Handler output)