Uses of Class
io.vertx.mutiny.core.parsetools.JsonParser
Packages that use JsonParser
-
Uses of JsonParser in io.vertx.mutiny.core.parsetools
Fields in io.vertx.mutiny.core.parsetools with type parameters of type JsonParserMethods in io.vertx.mutiny.core.parsetools that return JsonParserModifier and TypeMethodDescriptionJsonParser.arrayEventMode()Flip the parser to emit a stream of events for each new json array.JsonParser.arrayValueMode()Flip the parser to emit a single value event for each new json array.JsonParser.endHandler(Runnable endHandler) JsonParser.exceptionHandler(Consumer<Throwable> handler) JsonParser.fetch(long amount) static JsonParserJsonParser.newInstance(io.vertx.core.parsetools.JsonParser delegate) Creates a new instance of theJsonParser.static JsonParserJsonParser.newParser()Create a newJsonParserinstance.static JsonParserJsonParser.newParser(ReadStream<io.vertx.core.buffer.Buffer> stream) Create a newJsonParserinstance.static JsonParserJsonParser.newParser(Flow.Publisher<io.vertx.core.buffer.Buffer> stream) Create a newJsonParserinstance.JsonParser.objectEventMode()Flip the parser to emit a stream of events for each new json object.JsonParser.objectValueMode()Flip the parser to emit a single value event for each new json object.JsonParser.pause()JsonParser.pipeToAndForget(WriteStream<io.vertx.core.parsetools.JsonEvent> arg0) Pipe thisReadStreamto theWriteStream.JsonParser.resume()JsonParser.write(io.vertx.core.buffer.Buffer buffer) Handle aBuffer, pretty much like callingHandler.handle(Object). -
Uses of JsonParser in io.vertx.mutiny.ext.web.codec
Methods in io.vertx.mutiny.ext.web.codec with parameters of type JsonParserModifier and TypeMethodDescriptionBodyCodec.jsonStream(JsonParser parser) A body codec that parse the response as a JSON stream.