Package org.infinispan.io
Class GridInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.infinispan.io.GridInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
@Deprecated public class GridInputStream extends java.io.InputStream
Deprecated.since 10.0- Author:
- Bela Ban, Marko Luksa, Manik Surtani
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
available()
Deprecated.void
close()
Deprecated.int
read()
Deprecated.int
read(byte[] b)
Deprecated.int
read(byte[] bytes, int offset, int length)
Deprecated.long
skip(long length)
Deprecated.
-
-
-
Method Detail
-
read
public int read() throws java.io.IOException
Deprecated.- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] b) throws java.io.IOException
Deprecated.- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] bytes, int offset, int length) throws java.io.IOException
Deprecated.- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
skip
public long skip(long length) throws java.io.IOException
Deprecated.- Overrides:
skip
in classjava.io.InputStream
- Throws:
java.io.IOException
-
available
public int available() throws java.io.IOException
Deprecated.- Overrides:
available
in classjava.io.InputStream
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
Deprecated.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
- Throws:
java.io.IOException
-
-