Package com.ibm.di.function
Class HTTPFunctions.httpDataStream
- java.lang.Object
-
- java.io.Reader
-
- java.io.BufferedReader
-
- com.ibm.di.function.HTTPFunctions.httpDataStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.lang.Readable
- Enclosing class:
- HTTPFunctions
public static class HTTPFunctions.httpDataStream extends java.io.BufferedReader
-
-
Constructor Summary
Constructors Constructor Description httpDataStream(java.io.BufferedReader stream, int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
void
mark(int readlimit)
boolean
markSupported()
int
read()
int
read(char[] buf)
int
read(char[] buf, int off, int len)
java.lang.String
readLine()
-
-
-
Method Detail
-
available
public int available()
-
mark
public void mark(int readlimit)
- Overrides:
mark
in classjava.io.BufferedReader
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classjava.io.BufferedReader
-
read
public int read() throws java.io.IOException
- Overrides:
read
in classjava.io.BufferedReader
- Throws:
java.io.IOException
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.BufferedReader
-
read
public int read(char[] buf) throws java.io.IOException
- Overrides:
read
in classjava.io.Reader
- Throws:
java.io.IOException
-
read
public int read(char[] buf, int off, int len) throws java.io.IOException
- Overrides:
read
in classjava.io.BufferedReader
- Throws:
java.io.IOException
-
readLine
public java.lang.String readLine() throws java.io.IOException
- Overrides:
readLine
in classjava.io.BufferedReader
- Throws:
java.io.IOException
-
-