EncodingApi

io.bullet.borer.TranscodingSetup.EncodingApi
sealed trait EncodingApi[EncodingConfig <: TransEncodingConfig, DecodingConfig <: Config] extends CommonApi[EncodingConfig]

Attributes

Graph
Supertypes
trait CommonApi[EncodingConfig]
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def transDecode: DecodingApi[DecodingConfig]

Inherited methods

def withConfig(config: EncodingConfig): CommonApi.this.type

Configures the Config for this encoding/decoding run.

Configures the Config for this encoding/decoding run.

Attributes

Inherited from:
CommonApi
def withLogging(createLogger: LevelInfo => Logger): CommonApi.this.type

Enables logging of the encoding/decoding progress to the given Logging.Logger.

Enables logging of the encoding/decoding progress to the given Logging.Logger.

Attributes

Inherited from:
CommonApi
def withPrintLogging(maxShownByteArrayPrefixLen: Int, maxShownStringPrefixLen: Int, maxShownArrayElems: Int, maxShownMapEntries: Int, initialGutterWidth: Int, renderLevelCount: Boolean, renderEndOfInput: Boolean, renderCommas: Boolean, indentation: String, mapKeySep: String): CommonApi.this.type

Enables logging of the encoding/decoding progress to the console. Each data item that is written/received by the application is pretty printed to the console on its own line.

Enables logging of the encoding/decoding progress to the console. Each data item that is written/received by the application is pretty printed to the console on its own line.

Attributes

Inherited from:
CommonApi
def withStringLogging(stringBuilder: StringBuilder, maxShownByteArrayPrefixLen: Int, maxShownStringPrefixLen: Int, maxShownArrayElems: Int, maxShownMapEntries: Int, initialGutterWidth: Int, renderLevelCount: Boolean, renderEndOfInput: Boolean, renderCommas: Boolean, indentation: String, mapKeySep: String, lineSep: String, mapValueOnNewLine: Boolean): CommonApi.this.type

Enables logging of the encoding/decoding progress to the given JStringBuilder.

Enables logging of the encoding/decoding progress to the given JStringBuilder.

Attributes

Inherited from:
CommonApi
def withTransformerAdded(transformer: () => EncodingConfig): CommonApi.this.type

Allows for injecting additional custom logic into the encoding/decoding process. Used, for example, for on-the-side Logging.

Allows for injecting additional custom logic into the encoding/decoding process. Used, for example, for on-the-side Logging.

Attributes

Inherited from:
CommonApi