Method | Description | |
---|---|---|
BufferedDecoder ( ITranslator translator, int bufferSize ) : System |
Create a buffered Decoder.
|
|
ProcessByte ( byte input, byte output, 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 BufferedDecoder ( ITranslator translator, int bufferSize ) : System | ||
translator | ITranslator | The translater to use. |
bufferSize | int | The size of the buffer. |
return | System |
public ProcessByte ( byte input, byte output, int outOff ) : int | ||
input | byte | Data in. |
output | byte | Byte array for the output. |
outOff | int | The offset in the output byte array to start writing from. |
return | int |
public ProcessBytes ( byte input, int inOff, int len, byte outBytes, int outOff ) : int | ||
input | byte | The input data. |
inOff | int | Start position within input data array. |
len | int | Amount of data to process from input data array. |
outBytes | byte | Array to store output. |
outOff | int | Position in output array to start writing from. |
return | int |