Package deltix.util.io.offheap
Class OffHeapPollableInputStream
- java.lang.Object
-
- java.io.InputStream
-
- deltix.util.io.offheap.OffHeapPollableInputStream
-
- All Implemented Interfaces:
deltix.util.lang.Pollable
,java.io.Closeable
,java.lang.AutoCloseable
public class OffHeapPollableInputStream extends java.io.InputStream implements deltix.util.lang.Pollable
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
poll()
int
read()
int
read(byte[] b, int off, int len)
-
-
-
Method Detail
-
poll
public void poll()
- Specified by:
poll
in interfacedeltix.util.lang.Pollable
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
-
-