| java.lang.Object java.io.OutputStream org.continuent.sequoia.common.protocol.ByteArrayBlobOutputStream
ByteArrayBlobOutputStream | public class ByteArrayBlobOutputStream extends OutputStream (Code) | | This class defines a BlobOutputStream.
TODO: we should implement close() then error once we are closed.
author: Marc Herbert version: 1.0 |
Method Summary | |
public void | write(int b) | public void | write(byte[] b, int off, int len) |
currentPos | int currentPos(Code) | | The current offset in the stream, counting from zero (NOT SQL style)
|
ByteArrayBlobOutputStream | public ByteArrayBlobOutputStream(ByteArrayBlob b, int startPos)(Code) | | Creates a new BlobOutputStream object pointing to the given
Blob (currently implemented as an array).
Parameters: b - the reference to the underlying blob Parameters: startPos - the starting position in the array (counting from zero). |
|
|