Uses of Interface
io.vertx.core.parsetools.RecordParser
-
Packages that use RecordParser Package Description io.vertx.core.parsetools io.vertx.reactivex.core.parsetools io.vertx.rxjava.core.parsetools io.vertx.rxjava3.core.parsetools -
-
Uses of RecordParser in io.vertx.core.parsetools
Methods in io.vertx.core.parsetools that return RecordParser Modifier and Type Method Description RecordParser
RecordParser. endHandler(Handler<Void> endHandler)
RecordParser
RecordParser. exceptionHandler(Handler<Throwable> handler)
RecordParser
RecordParser. fetch(long amount)
RecordParser
RecordParser. handler(Handler<Buffer> handler)
RecordParser
RecordParser. maxRecordSize(int size)
Set the maximum allowed size for a record when using the delimited mode.static RecordParser
RecordParser. newDelimited(Buffer delim)
Create a newRecordParser
instance, initially in delimited mode, and where the delimiter can be represented by theBuffer
delim.static RecordParser
RecordParser. newDelimited(Buffer delim, Handler<Buffer> output)
LikenewDelimited(Buffer)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)
LikenewDelimited(Buffer)
but wraps thestream
.static RecordParser
RecordParser. newDelimited(String delim)
Create a newRecordParser
instance, initially in delimited mode, and where the delimiter can be represented by the String delim endcoded in latin-1 .static RecordParser
RecordParser. newDelimited(String delim, Handler<Buffer> output)
LikenewDelimited(String)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newDelimited(String delim, ReadStream<Buffer> stream)
LikenewDelimited(String)
but wraps thestream
.static RecordParser
RecordParser. newFixed(int size)
Create a newRecordParser
instance, initially in fixed size mode, and where the record size is specified by thesize
parameter.static RecordParser
RecordParser. newFixed(int size, Handler<Buffer> output)
LikenewFixed(int)
but set theoutput
that will receive whole records which have been parsed.static RecordParser
RecordParser. newFixed(int size, ReadStream<Buffer> stream)
LikenewFixed(int)
but wraps thestream
.RecordParser
RecordParser. pause()
RecordParser
RecordParser. resume()
-
Uses of RecordParser in io.vertx.reactivex.core.parsetools
Methods in io.vertx.reactivex.core.parsetools that return RecordParser Modifier and Type Method Description RecordParser
RecordParser. getDelegate()
Methods in io.vertx.reactivex.core.parsetools with parameters of type RecordParser Modifier and Type Method Description static RecordParser
RecordParser. newInstance(RecordParser arg)
Constructors in io.vertx.reactivex.core.parsetools with parameters of type RecordParser Constructor Description RecordParser(RecordParser delegate)
-
Uses of RecordParser in io.vertx.rxjava.core.parsetools
Methods in io.vertx.rxjava.core.parsetools that return RecordParser Modifier and Type Method Description RecordParser
RecordParser. getDelegate()
Methods in io.vertx.rxjava.core.parsetools with parameters of type RecordParser Modifier and Type Method Description static RecordParser
RecordParser. newInstance(RecordParser arg)
Constructors in io.vertx.rxjava.core.parsetools with parameters of type RecordParser Constructor Description RecordParser(RecordParser delegate)
-
Uses of RecordParser in io.vertx.rxjava3.core.parsetools
Methods in io.vertx.rxjava3.core.parsetools that return RecordParser Modifier and Type Method Description RecordParser
RecordParser. getDelegate()
Methods in io.vertx.rxjava3.core.parsetools with parameters of type RecordParser Modifier and Type Method Description static RecordParser
RecordParser. newInstance(RecordParser arg)
Constructors in io.vertx.rxjava3.core.parsetools with parameters of type RecordParser Constructor Description RecordParser(RecordParser delegate)
-