Package org.infinispan.io
Class UnclosableObjectOutputStream
- java.lang.Object
-
- org.infinispan.io.UnclosableObjectOutputStream
-
- All Implemented Interfaces:
DataOutput
,ObjectOutput
,AutoCloseable
@Deprecated public class UnclosableObjectOutputStream extends Object implements ObjectOutput
Deprecated.since 10.0- Since:
- 4.0
- Author:
- Manik Surtani
-
-
Constructor Summary
Constructors Constructor Description UnclosableObjectOutputStream(ObjectOutput delegate)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.void
flush()
Deprecated.void
write(byte[] b)
Deprecated.void
write(byte[] b, int off, int len)
Deprecated.void
write(int b)
Deprecated.void
writeBoolean(boolean v)
Deprecated.void
writeByte(int v)
Deprecated.void
writeBytes(String s)
Deprecated.void
writeChar(int v)
Deprecated.void
writeChars(String s)
Deprecated.void
writeDouble(double v)
Deprecated.void
writeFloat(float v)
Deprecated.void
writeInt(int v)
Deprecated.void
writeLong(long v)
Deprecated.void
writeObject(Object obj)
Deprecated.void
writeShort(int v)
Deprecated.void
writeUTF(String str)
Deprecated.
-
-
-
Constructor Detail
-
UnclosableObjectOutputStream
public UnclosableObjectOutputStream(ObjectOutput delegate)
Deprecated.
-
-
Method Detail
-
writeObject
public final void writeObject(Object obj) throws IOException
Deprecated.- Specified by:
writeObject
in interfaceObjectOutput
- Throws:
IOException
-
write
public final void write(int b) throws IOException
Deprecated.- Specified by:
write
in interfaceDataOutput
- Specified by:
write
in interfaceObjectOutput
- Throws:
IOException
-
write
public final void write(byte[] b) throws IOException
Deprecated.- Specified by:
write
in interfaceDataOutput
- Specified by:
write
in interfaceObjectOutput
- Throws:
IOException
-
write
public final void write(byte[] b, int off, int len) throws IOException
Deprecated.- Specified by:
write
in interfaceDataOutput
- Specified by:
write
in interfaceObjectOutput
- Throws:
IOException
-
writeBoolean
public final void writeBoolean(boolean v) throws IOException
Deprecated.- Specified by:
writeBoolean
in interfaceDataOutput
- Throws:
IOException
-
writeByte
public final void writeByte(int v) throws IOException
Deprecated.- Specified by:
writeByte
in interfaceDataOutput
- Throws:
IOException
-
writeShort
public final void writeShort(int v) throws IOException
Deprecated.- Specified by:
writeShort
in interfaceDataOutput
- Throws:
IOException
-
writeChar
public final void writeChar(int v) throws IOException
Deprecated.- Specified by:
writeChar
in interfaceDataOutput
- Throws:
IOException
-
writeInt
public final void writeInt(int v) throws IOException
Deprecated.- Specified by:
writeInt
in interfaceDataOutput
- Throws:
IOException
-
writeLong
public final void writeLong(long v) throws IOException
Deprecated.- Specified by:
writeLong
in interfaceDataOutput
- Throws:
IOException
-
writeFloat
public final void writeFloat(float v) throws IOException
Deprecated.- Specified by:
writeFloat
in interfaceDataOutput
- Throws:
IOException
-
writeDouble
public final void writeDouble(double v) throws IOException
Deprecated.- Specified by:
writeDouble
in interfaceDataOutput
- Throws:
IOException
-
writeBytes
public final void writeBytes(String s) throws IOException
Deprecated.- Specified by:
writeBytes
in interfaceDataOutput
- Throws:
IOException
-
writeChars
public final void writeChars(String s) throws IOException
Deprecated.- Specified by:
writeChars
in interfaceDataOutput
- Throws:
IOException
-
writeUTF
public final void writeUTF(String str) throws IOException
Deprecated.- Specified by:
writeUTF
in interfaceDataOutput
- Throws:
IOException
-
flush
public final void flush() throws IOException
Deprecated.- Specified by:
flush
in interfaceObjectOutput
- Throws:
IOException
-
close
public final void close() throws IOException
Deprecated.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceObjectOutput
- Throws:
IOException
-
-