Package org.apache.ignite.internal.visor
Class VisorDataTransferObjectOutput
- java.lang.Object
-
- org.apache.ignite.internal.visor.VisorDataTransferObjectOutput
-
- All Implemented Interfaces:
DataOutput,ObjectOutput,AutoCloseable
public class VisorDataTransferObjectOutput extends Object implements ObjectOutput
Deprecated.UseIgniteDataTransferObjectOutputinstead. This class may be removed in Ignite 3.0.Wrapper for object output.
-
-
Constructor Summary
Constructors Constructor Description VisorDataTransferObjectOutput(ObjectOutput out)Deprecated.Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Deprecated.voidflush()Deprecated.voidwrite(byte[] b)Deprecated.voidwrite(byte[] b, int off, int len)Deprecated.voidwrite(int b)Deprecated.voidwriteBoolean(boolean v)Deprecated.voidwriteByte(int v)Deprecated.voidwriteBytes(@NotNull String s)Deprecated.voidwriteChar(int v)Deprecated.voidwriteChars(@NotNull String s)Deprecated.voidwriteDouble(double v)Deprecated.voidwriteFloat(float v)Deprecated.voidwriteInt(int v)Deprecated.voidwriteLong(long v)Deprecated.voidwriteObject(Object obj)Deprecated.voidwriteShort(int v)Deprecated.voidwriteUTF(@NotNull String s)Deprecated.
-
-
-
Constructor Detail
-
VisorDataTransferObjectOutput
public VisorDataTransferObjectOutput(ObjectOutput out) throws IOException
Deprecated.Constructor.- Parameters:
out- Target stream.- Throws:
IOException- If an I/O error occurs.
-
-
Method Detail
-
writeObject
public void writeObject(Object obj) throws IOException
Deprecated.- Specified by:
writeObjectin interfaceObjectOutput- Throws:
IOException
-
write
public void write(int b) throws IOExceptionDeprecated.- Specified by:
writein interfaceDataOutput- Specified by:
writein interfaceObjectOutput- Throws:
IOException
-
write
public void write(byte[] b) throws IOExceptionDeprecated.- Specified by:
writein interfaceDataOutput- Specified by:
writein interfaceObjectOutput- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOExceptionDeprecated.- Specified by:
writein interfaceDataOutput- Specified by:
writein interfaceObjectOutput- Throws:
IOException
-
writeBoolean
public void writeBoolean(boolean v) throws IOExceptionDeprecated.- Specified by:
writeBooleanin interfaceDataOutput- Throws:
IOException
-
writeByte
public void writeByte(int v) throws IOExceptionDeprecated.- Specified by:
writeBytein interfaceDataOutput- Throws:
IOException
-
writeShort
public void writeShort(int v) throws IOExceptionDeprecated.- Specified by:
writeShortin interfaceDataOutput- Throws:
IOException
-
writeChar
public void writeChar(int v) throws IOExceptionDeprecated.- Specified by:
writeCharin interfaceDataOutput- Throws:
IOException
-
writeInt
public void writeInt(int v) throws IOExceptionDeprecated.- Specified by:
writeIntin interfaceDataOutput- Throws:
IOException
-
writeLong
public void writeLong(long v) throws IOExceptionDeprecated.- Specified by:
writeLongin interfaceDataOutput- Throws:
IOException
-
writeFloat
public void writeFloat(float v) throws IOExceptionDeprecated.- Specified by:
writeFloatin interfaceDataOutput- Throws:
IOException
-
writeDouble
public void writeDouble(double v) throws IOExceptionDeprecated.- Specified by:
writeDoublein interfaceDataOutput- Throws:
IOException
-
writeBytes
public void writeBytes(@NotNull @NotNull String s) throws IOExceptionDeprecated.- Specified by:
writeBytesin interfaceDataOutput- Throws:
IOException
-
writeChars
public void writeChars(@NotNull @NotNull String s) throws IOExceptionDeprecated.- Specified by:
writeCharsin interfaceDataOutput- Throws:
IOException
-
writeUTF
public void writeUTF(@NotNull @NotNull String s) throws IOExceptionDeprecated.- Specified by:
writeUTFin interfaceDataOutput- Throws:
IOException
-
flush
public void flush() throws IOExceptionDeprecated.- Specified by:
flushin interfaceObjectOutput- Throws:
IOException
-
close
public void close() throws IOExceptionDeprecated.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceObjectOutput- Throws:
IOException
-
-