KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > lockmanager > impl > NullLockTimer


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.lockmanager.impl;
5
6 import com.tc.objectserver.lockmanager.api.LockAwardContext;
7 import com.tc.objectserver.lockmanager.api.LockEventListener;
8
9 public class NullLockTimer implements LockEventListener {
10
11   public void notifyAddPending(int waiterCount, LockAwardContext ctxt) {
12     return;
13   }
14
15   public void notifyAward(int waiterCount, LockAwardContext ctxt) {
16     return;
17   }
18
19   public void notifyRevoke(LockAwardContext ctxt) {
20     return;
21   }
22
23 }
24
Popular Tags