public abstract class AbstractServletInputStream extends ServletInputStream
ServletInputStream
.Modifier and Type | Field and Description |
---|---|
protected static StringManager |
sm |
Constructor and Description |
---|
AbstractServletInputStream() |
Modifier and Type | Method and Description |
---|---|
void |
close() |
protected abstract void |
doClose() |
protected abstract boolean |
doIsReady() |
protected abstract int |
doRead(boolean block,
byte[] b,
int off,
int len)
Abstract method to be overridden by concrete implementations.
|
protected boolean |
isCloseRequired() |
boolean |
isFinished()
New Servlet 3.1 method.
|
boolean |
isReady()
New Servlet 3.1 method.
|
protected void |
onAllDataRead() |
protected void |
onDataAvailable() |
protected void |
onError(Throwable t) |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
int |
readLine(byte[] b,
int off,
int len)
Reads the input stream, one line at a time.
|
void |
setReadListener(ReadListener listener)
New Servlet 3.1 method.
|
available, mark, markSupported, read, reset, skip
protected static final StringManager sm
public final boolean isFinished()
public final boolean isReady()
public final void setReadListener(ReadListener listener)
public final int read() throws IOException
read
in class InputStream
IOException
public final int readLine(byte[] b, int off, int len) throws IOException
ServletInputStream
This method returns -1 if it reaches the end of the input stream before reading the maximum number of bytes.
readLine
in class ServletInputStream
b
- an array of bytes into which data is readoff
- an integer specifying the character at which this method
begins readinglen
- an integer specifying the maximum number of bytes to readIOException
- if an input or output exception has occurredpublic final int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
protected final void onAllDataRead() throws IOException
IOException
protected final void onDataAvailable() throws IOException
IOException
protected final void onError(Throwable t)
protected final boolean isCloseRequired()
protected abstract boolean doIsReady() throws IOException
IOException
protected abstract int doRead(boolean block, byte[] b, int off, int len) throws IOException
IOException
protected abstract void doClose() throws IOException
IOException
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.