Uses of Interface
io.vertx.core.parsetools.RecordParser
Packages that use RecordParser
Package
Description
-
Uses of RecordParser in io.vertx.core.parsetools
Methods in io.vertx.core.parsetools that return RecordParserModifier and TypeMethodDescriptionRecordParser.endHandler(Handler<Void> endHandler) RecordParser.exceptionHandler(Handler<Throwable> handler) RecordParser.fetch(long amount) RecordParser.maxRecordSize(int size) Set the maximum allowed size for a record when using the delimited mode.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.static RecordParserRecordParser.newDelimited(String delim) Create a newRecordParserinstance, initially in delimited mode, and where the delimiter can be represented by the String delim endcoded in latin-1 .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) Create a newRecordParserinstance, initially in fixed size mode, and where the record size is specified by thesizeparameter.static RecordParserLikeRecordParser.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.RecordParser.pause()RecordParser.resume() -
Uses of RecordParser in io.vertx.reactivex.core.parsetools
Methods in io.vertx.reactivex.core.parsetools that return RecordParserMethods in io.vertx.reactivex.core.parsetools with parameters of type RecordParserConstructors in io.vertx.reactivex.core.parsetools with parameters of type RecordParser -
Uses of RecordParser in io.vertx.rxjava3.core.parsetools
Methods in io.vertx.rxjava3.core.parsetools that return RecordParserMethods in io.vertx.rxjava3.core.parsetools with parameters of type RecordParserConstructors in io.vertx.rxjava3.core.parsetools with parameters of type RecordParser