org.eclipse.jetty.server.handler
Interface CompleteHandler

All Known Implementing Classes:
ContextHandler, MovedContextHandler, ServletContextHandler, StatisticsHandler, WebAppContext

public interface CompleteHandler

An interface for handlers that wish to be notified of request completion. If the request attribute COMPLETE_HANDLER_ATTR is set as either a single CompleteHandler instance or a List of CompleteHandler instances, then when the ServletRequest#complete() method is called, then the complete(Request) method is called for each CompleteHandler.


Field Summary
static String COMPLETE_HANDLER_ATTR
           
 
Method Summary
 void complete(Request request)
           
 

Field Detail

COMPLETE_HANDLER_ATTR

static final String COMPLETE_HANDLER_ATTR
See Also:
Constant Field Values
Method Detail

complete

void complete(Request request)


Copyright © 1995-2009 Mort Bay Consulting. All Rights Reserved.