CodecSink constructor

CodecSink(
  1. ByteConversionSink _sink,
  2. CodecFilter<dynamic, CodecBuffer> _filter
)

Construct new CodecSink which wraps a ByteConversionSink with a specified CodecFilter which will handle the algorithm details.

Implementation

CodecSink(this._sink, this._filter);