Package deltix.util.io.aeron
Class AeronInputStream
- java.lang.Object
-
- java.io.InputStream
-
- deltix.util.io.aeron.AeronInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
- Direct Known Subclasses:
AeronPollableInputStream
@Deprecated public class AeronInputStream extends java.io.InputStreamDeprecated.
-
-
Field Summary
Fields Modifier and Type Field Description protected intdataOffsetDeprecated.protected intdataSizeDeprecated.protected byte[]internalBufDeprecated.protected io.aeron.FragmentAssemblersubscribeHandlerDeprecated.protected io.aeron.SubscriptionsubscriptionDeprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Deprecated.protected io.aeron.logbuffer.FragmentHandlercreateSubscribeHandler()Deprecated.protected intgetByte()Deprecated.protected intgetBytes(byte[] b, int offset, int length)Deprecated.protected intgetDataSize()Deprecated.protected voidputBytes(org.agrona.DirectBuffer buffer, int offset, int length)Deprecated.intread()Deprecated.intread(byte[] b, int off, int len)Deprecated.
-
-
-
Field Detail
-
subscription
protected final io.aeron.Subscription subscription
Deprecated.
-
subscribeHandler
protected final io.aeron.FragmentAssembler subscribeHandler
Deprecated.
-
internalBuf
protected byte[] internalBuf
Deprecated.
-
dataOffset
protected int dataOffset
Deprecated.
-
dataSize
protected int dataSize
Deprecated.
-
-
Method Detail
-
createSubscribeHandler
protected io.aeron.logbuffer.FragmentHandler createSubscribeHandler()
Deprecated.
-
read
public int read() throws java.io.IOExceptionDeprecated.- Specified by:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOExceptionDeprecated.- Overrides:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
putBytes
protected void putBytes(org.agrona.DirectBuffer buffer, int offset, int length)Deprecated.
-
getByte
protected int getByte()
Deprecated.
-
getBytes
protected int getBytes(byte[] b, int offset, int length)Deprecated.
-
getDataSize
protected int getDataSize()
Deprecated.
-
close
public void close()
Deprecated.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.InputStream
-
-