This is the logger class that can be set in the {@link org.apache.wicket.protocol.http.WebApplication#getRequestLogger()} method. If this classis set all request and live sessions will be recorded and displayed From the total created sessions, to the peak session count and the current live sessions. For the live sessions the request logger will record what request are happening what kind of {@link IRequestHandler} wasthe event target and what {@link IRequestHandler} was the response target. It also records whatsession data was touched for this and how long the request did take. To view this information live see org.apache.wicket.devutils.inspector.InspectorBug that shows the org.apache.wicket.devutils.inspector.InspectorPage with the org.apache.wicket.devutils.inspector.LiveSessionsPage. This implementation uses a rounded buffer for storing the request data, and strives to minimize contention on accessing the rounded buffer. At the beginning of your application start, the buffer is empty and fills up during the lifetime of the application until the window size has been reached, and new requests are written to the position containing the oldest request.
@since 1.2
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.