Package org.apache.sysds.runtime.util
Class DoubleBufferingOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- org.apache.sysds.runtime.util.DoubleBufferingOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class DoubleBufferingOutputStream extends FilterOutputStream
-
-
Constructor Summary
Constructors Constructor Description DoubleBufferingOutputStream(OutputStream out)
DoubleBufferingOutputStream(OutputStream out, int num, int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class java.io.FilterOutputStream
write
-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
DoubleBufferingOutputStream
public DoubleBufferingOutputStream(OutputStream out)
-
DoubleBufferingOutputStream
public DoubleBufferingOutputStream(OutputStream out, int num, int size)
-
-
Method Detail
-
write
public void write(int b) throws IOException
- Overrides:
write
in classFilterOutputStream
- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classFilterOutputStream
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classFilterOutputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classFilterOutputStream
- Throws:
IOException
-
-