Table of Contents
Previous Section
// WebScript Application.wos
- awake {
++requestCount;
[self logWithFormat:@"Now serving request %@", requestCount];
} // Java Application.java
public void awake() {
++requestCount;
this.logString("Now serving request " + requestCount);
}
Table of Contents
Next Section