Package herddb.utils
Class ODirectFileOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- herddb.utils.ODirectFileOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class ODirectFileOutputStream extends OutputStream
Implementation of OutputStream which is writing using O_DIRECT flag- Author:
- enrico.olivelli
-
-
Constructor Summary
Constructors Constructor Description ODirectFileOutputStream(Path p)ODirectFileOutputStream(Path p, int batchBlocks, OpenOption... options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()intgetAlignment()intgetBatchBlocks()FileChannelgetFc()intgetWrittenBlocks()voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
ODirectFileOutputStream
public ODirectFileOutputStream(Path p) throws IOException
- Throws:
IOException
-
ODirectFileOutputStream
public ODirectFileOutputStream(Path p, int batchBlocks, OpenOption... options) throws IOException
- Throws:
IOException
-
-
Method Detail
-
getAlignment
public int getAlignment()
-
getWrittenBlocks
public int getWrittenBlocks()
-
getBatchBlocks
public int getBatchBlocks()
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
getFc
public FileChannel getFc()
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
-