Interface w3c.www.http.HttpStreamObserver
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface w3c.www.http.HttpStreamObserver

public interface HttpStreamObserver
extends Object

Method Index

 o notifyClose(InputStream)
The stream has been closed.
 o notifyEOF(InputStream)
The end of the stream has been reached.
 o notifyFailure(InputStream)
The stream doesn't support monitoring.

Methods

 o notifyEOF
  public abstract void notifyEOF(InputStream in)
The end of the stream has been reached.
Parameters:
in - The stream that has reached enf od file.
 o notifyClose
  public abstract void notifyClose(InputStream in)
The stream has been closed.
Parameters:
in - The stream that has been closed.
 o notifyFailure
  public abstract void notifyFailure(InputStream in)
The stream doesn't support monitoring. This happens for HTTP connections that don't provide any infos about their length.
Parameters:
in - The stream on which an IO exception occured.

All Packages  Class Hierarchy  This Package  Previous  Next  Index