Package com.indeed.util.mmap
Class MemoryScatteringByteChannel
- java.lang.Object
-
- com.indeed.util.mmap.MemoryScatteringByteChannel
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.nio.channels.Channel,java.nio.channels.ReadableByteChannel,java.nio.channels.ScatteringByteChannel
public final class MemoryScatteringByteChannel extends java.lang.Object implements java.nio.channels.ScatteringByteChannel
-
-
Constructor Summary
Constructors Constructor Description MemoryScatteringByteChannel(Memory memory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanisOpen()intread(java.nio.ByteBuffer dst)longread(java.nio.ByteBuffer[] dsts)longread(java.nio.ByteBuffer[] dsts, int offset, int length)
-
-
-
Constructor Detail
-
MemoryScatteringByteChannel
public MemoryScatteringByteChannel(Memory memory)
-
-
Method Detail
-
read
public long read(java.nio.ByteBuffer[] dsts, int offset, int length) throws java.io.IOException- Specified by:
readin interfacejava.nio.channels.ScatteringByteChannel- Throws:
java.io.IOException
-
read
public long read(java.nio.ByteBuffer[] dsts) throws java.io.IOException- Specified by:
readin interfacejava.nio.channels.ScatteringByteChannel- Throws:
java.io.IOException
-
read
public int read(java.nio.ByteBuffer dst) throws java.io.IOException- Specified by:
readin interfacejava.nio.channels.ReadableByteChannel- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpenin interfacejava.nio.channels.Channel
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.nio.channels.Channel- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-