Class BinaryEncoder
An [Encoder] for Avro's binary encoding that does not buffer output.
class BinaryEncoder(ORangeT)
if (isOutputRange!(ORangeT, ubyte));
This encoder does not buffer writes on its own, and thus is best used with [BufferedOutputRange].
Constructors
Name | Description |
---|---|
this
(oRange)
|
Create a writer that sends its output to the underlying stream oRange .
|