Interface IHttpAccessLogger
- All Known Implementing Classes:
ConsoleHttpAccessLogger
public interface IHttpAccessLogger
Defines the http access log
-
Method Summary
Modifier and TypeMethodDescriptionvoidrequestReceived(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 Details
-
start
void start()Notification to start the http access logger -
stop
void stop()Notification to stop the http access logger -
requestReceived
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
-