Class KryoParser

java.lang.Object
com.landawn.abacus.parser.KryoParser
All Implemented Interfaces:
Parser<KryoSerializationConfig,KryoDeserializationConfig>

public final class KryoParser extends Object
The content is encoded with Base64 if the target output is String or Writer, otherwise the content is NOT encoded with Base64 if the target output is File or OutputStream. So content must be encoded with Base64 if the specified input is String or Reader, otherwise the content must NOT be encoded with Base64 if the specified input is File or InputStream. The reason not to encoded the content with Base64 for File/OutputStream is to provide higher performance solution.
Since:
0.8
Author:
Haiyang Li