com.antiaction.mayhem.core
Interface IBufferedInputStream

All Known Implementing Classes:
BufferedInputStream, BufferedSocketInputStream

public interface IBufferedInputStream

Buffered InputStream Interface.

Version:
1.00
Author:
Nicholas Clarke

Method Summary
 int available()
           
 void close()
           
 void mark(int readlimit)
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 java.lang.String readLine(byte[] arrReadLine)
           
 int readLine(byte[] b, int off, int len)
           
 void reset()
           
 long skip(long n)
           
 

Method Detail

close

void close()
           throws java.io.IOException
Throws:
java.io.IOException

markSupported

boolean markSupported()

available

int available()
              throws java.io.IOException
Throws:
java.io.IOException

mark

void mark(int readlimit)

reset

void reset()
           throws java.io.IOException
Throws:
java.io.IOException

read

int read()
         throws java.io.IOException
Throws:
java.io.IOException

read

int read(byte[] b)
         throws java.io.IOException
Throws:
java.io.IOException

read

int read(byte[] b,
         int off,
         int len)
         throws java.io.IOException
Throws:
java.io.IOException

skip

long skip(long n)
          throws java.io.IOException
Throws:
java.io.IOException

readLine

int readLine(byte[] b,
             int off,
             int len)
             throws java.io.IOException
Throws:
java.io.IOException

readLine

java.lang.String readLine(byte[] arrReadLine)
                          throws java.io.IOException
Throws:
java.io.IOException


Copyright © 2001-2004 Nicholas Clarke. All Rights Reserved.