Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > WebObjects Developer's Guide


Table of Contents Previous Section

Session Awake

After the application object has performed its own awake method, it restores the appropriate session object and sends it the awake message too.

If you wanted to keep track of the number of requests per session instead of per application, you could do so in the session's awake method:

- awake {
requestCount++;
}

Table of Contents Next Section