Package com.fasterxml.jackson.core.util
Class BufferRecyclers
java.lang.Object
com.fasterxml.jackson.core.util.BufferRecyclers
Deprecated.
Helper entity used to control access to simple buffer recycling scheme used for
some encoding, decoding tasks.
- Since:
- 2.9.2
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.System property that is checked to see if recycled buffers (seeBufferRecycler) should be tracked, for purpose of forcing release of all such buffers, typically during major garbage-collection. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic byte[]encodeAsUTF8(String text) Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenencodeAsUTF8()) instead.static BufferRecyclerDeprecated.Since 2.16 should useRecyclerPoolabstraction instead of calling static methods of this classstatic JsonStringEncoderDeprecated.Since 2.10 callJsonStringEncoder.getInstance()instead.static voidquoteAsJsonText(CharSequence input, StringBuilder output) Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenquoteAsString()) instead.static char[]quoteAsJsonText(String rawText) Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenquoteAsString()) instead.static byte[]quoteAsJsonUTF8(String rawText) Deprecated.Since 2.10 callJsonStringEncoder.getInstance()(and thenquoteAsUTF8()) instead.static intDeprecated.Specialized method that will release all recycledBufferRecyclerif (and only if) recycler tracking has been enabled (seeSYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS).
-
Field Details
-
SYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS
Deprecated.System property that is checked to see if recycled buffers (seeBufferRecycler) should be tracked, for purpose of forcing release of all such buffers, typically during major garbage-collection.- Since:
- 2.9.6
- See Also:
-
-
Constructor Details
-
BufferRecyclers
public BufferRecyclers()Deprecated.
-
-
Method Details
-
getBufferRecycler
Deprecated.Since 2.16 should useRecyclerPoolabstraction instead of calling static methods of this classMain accessor to call for accessing possibly recycledBufferRecyclerinstance.- Returns:
BufferRecyclerto use
-
releaseBuffers
public static int releaseBuffers()Deprecated.Specialized method that will release all recycledBufferRecyclerif (and only if) recycler tracking has been enabled (seeSYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS). This method is usually called on shutdown of the container like Application Server to ensure that no references are reachable viaThreadLocals as this may cause unintentional retention of sizable amounts of memory. It may also be called regularly if GC for some reason does not clear upSoftReferences aggressively enough.- Returns:
- Number of buffers released, if tracking enabled (zero or more); -1 if tracking not enabled.
- Since:
- 2.9.6
-
getJsonStringEncoder
Deprecated.Since 2.10 callJsonStringEncoder.getInstance()instead. NOTE: was accidentally removed but reintroduced as deprecated in 2.12.5, to be removed from 3.0)Not to be used any more.- Returns:
JsonStringEncoderinstance to use.
-
encodeAsUTF8
Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenencodeAsUTF8()) instead. NOTE: was accidentally removed but reintroduced as deprecated in 2.12.5, to be removed from 3.0)Not to be used any more.- Parameters:
text- String to encode- Returns:
- String encoded as UTF-8 bytes.
-
quoteAsJsonText
Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenquoteAsString()) instead. NOTE: was accidentally removed but reintroduced as deprecated in 2.12.5, to be removed from 3.0)Not to be used any more:- Parameters:
rawText- String to quote- Returns:
- Quoted text as
char[]
-
quoteAsJsonText
Deprecated.Since 2.10 callJsonStringEncoder.getInstance()and thenquoteAsString()) instead. NOTE: was accidentally removed but reintroduced as deprecated in 2.12.5, to be removed from 3.0)Not to be used any more.- Parameters:
input- Textual content to quoteoutput- Builder to append quoted content
-
quoteAsJsonUTF8
Deprecated.Since 2.10 callJsonStringEncoder.getInstance()(and thenquoteAsUTF8()) instead. NOTE: was accidentally removed but reintroduced as deprecated in 2.12.5, to be removed from 3.0)Not to be used any more.- Parameters:
rawText- String to quote- Returns:
- Quoted text as
byte[]
-
RecyclerPool.