gnu.inet.http
Interface ResponseBodyReader
- ByteArrayResponseBodyReader
public interface ResponseBodyReader
Callback interface for receiving notification of response body content.
boolean | accept(Request request, Response response) - Indicate whether this reader is interested in the specified response.
|
void | close() - Notifies the reader that the end of the content was reached.
|
void | read(byte[] buffer, int offset, int length) - Receive notification of body content.
|
accept
public boolean accept(Request request,
Response response)
Indicate whether this reader is interested in the specified response.
If it returns false, it will not receive body content notifications for
that response.
close
public void close()
Notifies the reader that the end of the content was reached.
read
public void read(byte[] buffer,
int offset,
int length)
Receive notification of body content.
buffer
- the content bufferoffset
- the offset within the buffer that content startslength
- the length of the content
© Copyright 2003 The Free Software Foundation,
all rights reserved