rabbit.meta
Interface MetaHandler

All Known Implementing Classes:
AccessGetter, CacheStatus, ClearCache, ConfigGetter, Connections, FileSender, KillTheStupidThing, ProxyConfig, Status, UserGetter

public interface MetaHandler

This interface specifies the methods methapages has to implement


Method Summary
 void handle(java.io.InputStream input, MultiOutputStream output, HTTPHeader header, java.util.Properties htab, Connection con)
          Handler of a MetaPage, that is a special page the proxy supports (like the status page).
 

Method Detail

handle

public void handle(java.io.InputStream input,
                   MultiOutputStream output,
                   HTTPHeader header,
                   java.util.Properties htab,
                   Connection con)
Handler of a MetaPage, that is a special page the proxy supports (like the status page). This method may be called by several threads simultaniously, synchronize when needed.

Parameters:
input - the InputStream from the client.
output - the OutputStream to the client.
header - the http request header
htab - the supplied argument to the page (CGI-parameters).
con - the Connection that is serving the request.