Method | Description | |
---|---|---|
BufferedEncoder ( ITranslator translator, int bufferSize ) : System |
Create.
|
|
ProcessByte ( byte input, byte outBytes, int outOff ) : int |
Process one byte of data.
|
|
ProcessBytes ( byte input, int inOff, int len, byte outBytes, int outOff ) : int |
Process data from a byte array.
|
public BufferedEncoder ( ITranslator translator, int bufferSize ) : System | ||
translator | ITranslator | The translator to use. |
bufferSize | int | Size of the chunks. |
return | System |
public ProcessByte ( byte input, byte outBytes, int outOff ) : int | ||
input | byte | The byte. |
outBytes | byte | An array to store output in. |
outOff | int | Offset within output array to start writing from. |
return | int |
public ProcessBytes ( byte input, int inOff, int len, byte outBytes, int outOff ) : int | ||
input | byte | Input data Byte array containing data to be processed. |
inOff | int | Start position within input data array. |
len | int | Amount of input data to be processed. |
outBytes | byte | Output data array. |
outOff | int | Offset within output data array to start writing to. |
return | int |