Interface IHttpAccessLogger
-
- All Known Implementing Classes:
ConsoleHttpAccessLogger
public interface IHttpAccessLoggerDefines the http access log
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrequestReceived(IHttpServerInformation serverInformation, IHttpRequest request)Request received notificationvoidresponseSent(IHttpServerInformation serverInformation, IHttpRequest request, IHttpResponse response)Response sent notificationvoidstart()Notification to start the http access loggervoidstop()Notification to stop the http access logger
-
-
-
Method Detail
-
start
void start()
Notification to start the http access logger
-
stop
void stop()
Notification to stop the http access logger
-
requestReceived
void requestReceived(IHttpServerInformation serverInformation, IHttpRequest request)
Request received notification- Parameters:
serverInformation- the server informationrequest- the request
-
responseSent
void responseSent(IHttpServerInformation serverInformation, IHttpRequest request, IHttpResponse response)
Response sent notification- Parameters:
serverInformation- the server informationrequest- the requestresponse- the response
-
-