open static fun newFixed(size: Int): RecordParser
Create a new RecordParser instance, initially in fixed size mode, and where the record size is specified by the size parameter.
output Will receive whole records which have been parsed.
size - the initial record size
open static fun newFixed(size: Int, output: Handler<Buffer>): RecordParser
Like #newFixed(int) but set the output that will receive whole records which have been parsed.
size - the initial record size
output - handler that will receive the output
open static fun newFixed(size: Int, stream: ReadStream<Buffer>): RecordParser
Like #newFixed(int) but wraps the stream. The stream handlers will be set/unset when the #handler(Handler) is set. The pause()/resume() operations are propagated to the stream.