Package | Description |
---|---|
com.fasterxml.jackson.dataformat.smile |
Package that contains implementation of Jackson Streaming API that works
with Smile data format (see Smile format specification),
and can be used with standard Jackson data binding functionality to deal with
Smile encoded data.
|
com.fasterxml.jackson.dataformat.smile.async |
Package that contains experimental non-blocking ("asynchronous")
implementation of reader-part of Jackson streaming API,
working on Smile format.
|
Modifier and Type | Field and Description |
---|---|
protected SmileBufferRecycler<String> |
SmileParser._smileBufferRecycler
Helper object used for low-level recycling of Smile-generator
specific buffers.
|
protected SmileBufferRecycler<SmileGenerator.SharedStringNode> |
SmileGenerator._smileBufferRecycler
Helper object used for low-level recycling of Smile-generator
specific buffers.
|
Modifier and Type | Field and Description |
---|---|
protected static ThreadLocal<SoftReference<SmileBufferRecycler<String>>> |
SmileParser._smileRecyclerRef
ThreadLocal contains a SoftReference
to a buffer recycler used to provide a low-cost
buffer recycling for Smile-specific buffers. |
protected static ThreadLocal<SoftReference<SmileBufferRecycler<SmileGenerator.SharedStringNode>>> |
SmileGenerator._smileRecyclerRef
This
ThreadLocal contains a SoftReference
to a buffer recycler used to provide a low-cost
buffer recycling for Smile-specific buffers. |
Modifier and Type | Method and Description |
---|---|
protected static SmileBufferRecycler<String> |
SmileParser._smileBufferRecycler() |
protected static SmileBufferRecycler<SmileGenerator.SharedStringNode> |
SmileGenerator._smileBufferRecycler() |
Modifier and Type | Field and Description |
---|---|
protected SmileBufferRecycler<String> |
NonBlockingParserImpl._smileBufferRecycler
Helper object used for low-level recycling of Smile-generator
specific buffers.
|
Modifier and Type | Field and Description |
---|---|
protected static ThreadLocal<SoftReference<SmileBufferRecycler<String>>> |
NonBlockingParserImpl._smileRecyclerRef
ThreadLocal contains a SoftReference
to a buffer recycler used to provide a low-cost
buffer recycling for Smile-specific buffers. |
Modifier and Type | Method and Description |
---|---|
protected static SmileBufferRecycler<String> |
NonBlockingParserImpl._smileBufferRecycler() |
Copyright © 2014 FasterXML. All rights reserved.