Package org.apache.ignite.internal.visor
Class VisorDataTransferObjectInput
- java.lang.Object
-
- org.apache.ignite.internal.visor.VisorDataTransferObjectInput
-
- All Implemented Interfaces:
DataInput,ObjectInput,AutoCloseable
public class VisorDataTransferObjectInput extends Object implements ObjectInput
Deprecated.UseIgniteDataTransferObjectInputinstead. This class may be removed in Ignite 3.0.Wrapper for object input.
-
-
Constructor Summary
Constructors Constructor Description VisorDataTransferObjectInput(ObjectInput in)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intavailable()Deprecated.voidclose()Deprecated.intread()Deprecated.intread(byte[] b)Deprecated.intread(byte[] b, int off, int len)Deprecated.booleanreadBoolean()Deprecated.bytereadByte()Deprecated.charreadChar()Deprecated.doublereadDouble()Deprecated.floatreadFloat()Deprecated.voidreadFully(@org.jetbrains.annotations.NotNull byte[] b)Deprecated.voidreadFully(@org.jetbrains.annotations.NotNull byte[] b, int off, int len)Deprecated.intreadInt()Deprecated.StringreadLine()Deprecated.longreadLong()Deprecated.ObjectreadObject()Deprecated.shortreadShort()Deprecated.intreadUnsignedByte()Deprecated.intreadUnsignedShort()Deprecated.@NotNull StringreadUTF()Deprecated.longskip(long n)Deprecated.intskipBytes(int n)Deprecated.
-
-
-
Constructor Detail
-
VisorDataTransferObjectInput
public VisorDataTransferObjectInput(ObjectInput in) throws IOException
Deprecated.- Parameters:
in- Target input.- Throws:
IOException- If an I/O error occurs.
-
-
Method Detail
-
readObject
public Object readObject() throws ClassNotFoundException, IOException
Deprecated.- Specified by:
readObjectin interfaceObjectInput- Throws:
ClassNotFoundExceptionIOException
-
read
public int read() throws IOExceptionDeprecated.- Specified by:
readin interfaceObjectInput- Throws:
IOException
-
read
public int read(byte[] b) throws IOExceptionDeprecated.- Specified by:
readin interfaceObjectInput- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOExceptionDeprecated.- Specified by:
readin interfaceObjectInput- Throws:
IOException
-
skip
public long skip(long n) throws IOExceptionDeprecated.- Specified by:
skipin interfaceObjectInput- Throws:
IOException
-
available
public int available() throws IOExceptionDeprecated.- Specified by:
availablein interfaceObjectInput- Throws:
IOException
-
close
public void close() throws IOExceptionDeprecated.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceObjectInput- Throws:
IOException
-
readFully
public void readFully(@NotNull @org.jetbrains.annotations.NotNull byte[] b) throws IOExceptionDeprecated.- Specified by:
readFullyin interfaceDataInput- Throws:
IOException
-
readFully
public void readFully(@NotNull @org.jetbrains.annotations.NotNull byte[] b, int off, int len) throws IOExceptionDeprecated.- Specified by:
readFullyin interfaceDataInput- Throws:
IOException
-
skipBytes
public int skipBytes(int n) throws IOExceptionDeprecated.- Specified by:
skipBytesin interfaceDataInput- Throws:
IOException
-
readBoolean
public boolean readBoolean() throws IOExceptionDeprecated.- Specified by:
readBooleanin interfaceDataInput- Throws:
IOException
-
readByte
public byte readByte() throws IOExceptionDeprecated.- Specified by:
readBytein interfaceDataInput- Throws:
IOException
-
readUnsignedByte
public int readUnsignedByte() throws IOExceptionDeprecated.- Specified by:
readUnsignedBytein interfaceDataInput- Throws:
IOException
-
readShort
public short readShort() throws IOExceptionDeprecated.- Specified by:
readShortin interfaceDataInput- Throws:
IOException
-
readUnsignedShort
public int readUnsignedShort() throws IOExceptionDeprecated.- Specified by:
readUnsignedShortin interfaceDataInput- Throws:
IOException
-
readChar
public char readChar() throws IOExceptionDeprecated.- Specified by:
readCharin interfaceDataInput- Throws:
IOException
-
readInt
public int readInt() throws IOExceptionDeprecated.- Specified by:
readIntin interfaceDataInput- Throws:
IOException
-
readLong
public long readLong() throws IOExceptionDeprecated.- Specified by:
readLongin interfaceDataInput- Throws:
IOException
-
readFloat
public float readFloat() throws IOExceptionDeprecated.- Specified by:
readFloatin interfaceDataInput- Throws:
IOException
-
readDouble
public double readDouble() throws IOExceptionDeprecated.- Specified by:
readDoublein interfaceDataInput- Throws:
IOException
-
readLine
public String readLine() throws IOException
Deprecated.- Specified by:
readLinein interfaceDataInput- Throws:
IOException
-
readUTF
@NotNull public @NotNull String readUTF() throws IOException
Deprecated.- Specified by:
readUTFin interfaceDataInput- Throws:
IOException
-
-