KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > impl > NullObjectManagerStatsListener


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.objectserver.impl;
5
6 import com.tc.objectserver.api.ObjectManagerStatsListener;
7
8 public class NullObjectManagerStatsListener implements ObjectManagerStatsListener {
9
10   public NullObjectManagerStatsListener() {
11     //
12
}
13
14   public void cacheHit() {
15     //
16
}
17
18   public void cacheMiss() {
19     //
20
}
21
22   public void newObjectCreated() {
23     //
24
}
25
26 }
27
Popular Tags