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.- Throws:
IOException
-
write
public final void write(int b) throws IOException
Deprecated.- Throws:
IOException
-
write
public final void write(byte[] b) throws IOException
Deprecated.- Throws:
IOException
-
write
public final void write(byte[] b, int off, int len) throws IOException
Deprecated.- Throws:
IOException
-
writeBoolean
public final void writeBoolean(boolean v) throws IOException
Deprecated.- Throws:
IOException
-
writeByte
public final void writeByte(int v) throws IOException
Deprecated.- Throws:
IOException
-
writeShort
public final void writeShort(int v) throws IOException
Deprecated.- Throws:
IOException
-
writeChar
public final void writeChar(int v) throws IOException
Deprecated.- Throws:
IOException
-
writeInt
public final void writeInt(int v) throws IOException
Deprecated.- Throws:
IOException
-
writeLong
public final void writeLong(long v) throws IOException
Deprecated.- Throws:
IOException
-
writeFloat
public final void writeFloat(float v) throws IOException
Deprecated.- Throws:
IOException
-
writeDouble
public final void writeDouble(double v) throws IOException
Deprecated.- Throws:
IOException
-
writeBytes
public final void writeBytes(String s) throws IOException
Deprecated.- Throws:
IOException
-
writeChars
public final void writeChars(String s) throws IOException
Deprecated.- Throws:
IOException
-
writeUTF
public final void writeUTF(String str) throws IOException
Deprecated.- Throws:
IOException
-
flush
public final void flush() throws IOException
Deprecated.- Throws:
IOException
-
close
public final void close() throws IOException
Deprecated.- Throws:
IOException
-
-