Package | Description |
---|---|
com.fasterxml.jackson.core |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonGenerator )
instances. |
com.fasterxml.jackson.core.async |
Package that contains abstractions needed to support optional
non-blocking decoding (parsing) functionality.
|
com.fasterxml.jackson.core.json.async |
Non-blocking ("async") JSON parser implementation.
|
Modifier and Type | Method and Description |
---|---|
NonBlockingInputFeeder |
JsonParser.getNonBlockingInputFeeder()
Method that will either return a feeder instance (if parser uses
non-blocking, aka asynchronous access); or
null for
parsers that use blocking I/O. |
Modifier and Type | Interface and Description |
---|---|
interface |
ByteArrayFeeder
NonBlockingInputFeeder implementation used when feeding data
as byte arrays. |
interface |
ByteBufferFeeder
NonBlockingInputFeeder implementation used when feeding data
as ByteBuffer contents. |
Modifier and Type | Class and Description |
---|---|
class |
NonBlockingByteBufferJsonParser
Non-blocking parser implementation for JSON content that takes its input
via
ByteBuffer instance(s) passed. |
class |
NonBlockingJsonParser
Non-blocking parser implementation for JSON content that takes its input
via
byte[] passed. |
Modifier and Type | Method and Description |
---|---|
NonBlockingInputFeeder |
NonBlockingByteBufferJsonParser.getNonBlockingInputFeeder() |
Copyright © 2008–2022 FasterXML. All rights reserved.