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