KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > async > impl > NullStageMonitor


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.async.impl;
5
6 import com.tc.async.api.StageMonitor;
7
8 public class NullStageMonitor implements StageMonitor {
9
10   public NullStageMonitor() {
11     return;
12   }
13
14   public void eventBegin(int queueDepth) {
15     return;
16   }
17
18   public void flush() {
19     return;
20   }
21
22   public Analysis analyze() {
23     return null;
24   }
25 }
Popular Tags