Package org.teiid.common.buffer.impl
Class ExtensibleBufferedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.teiid.common.buffer.impl.ExtensibleBufferedOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public abstract class ExtensibleBufferedOutputStream extends OutputStream
-
-
Field Summary
Fields Modifier and Type Field Description protected ByteBuffer
buf
protected int
bytesWritten
-
Constructor Summary
Constructors Constructor Description ExtensibleBufferedOutputStream()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
protected abstract int
flushDirect(int i)
Flush up to i bytes where i is the current position of the bufferint
getBytesWritten()
protected abstract ByteBuffer
newBuffer()
void
write(byte b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class java.io.OutputStream
nullOutputStream, write
-
-
-
-
Field Detail
-
buf
protected ByteBuffer buf
-
bytesWritten
protected int bytesWritten
-
-
Method Detail
-
write
public void write(int b) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte b) throws IOException
- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
newBuffer
protected abstract ByteBuffer newBuffer() throws IOException
- Throws:
IOException
-
flushDirect
protected abstract int flushDirect(int i) throws IOException
Flush up to i bytes where i is the current position of the buffer- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
getBytesWritten
public int getBytesWritten()
-
-