Package io.undertow.server
Interface ExchangeCompletionListener
-
public interface ExchangeCompletionListener
Listener interface for events that are run at the completion of a request/response cycle (i.e. when the request has been completely read, and the response has been fully written). At this point it is to late to modify the exchange further. Completion listeners are invoked in reverse order,- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ExchangeCompletionListener.NextListener
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exchangeEvent(HttpServerExchange exchange, ExchangeCompletionListener.NextListener nextListener)
-
-
-
Method Detail
-
exchangeEvent
void exchangeEvent(HttpServerExchange exchange, ExchangeCompletionListener.NextListener nextListener)
-
-