01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.lockmanager.impl;
05:
06: import com.tc.objectserver.lockmanager.api.LockAwardContext;
07: import com.tc.objectserver.lockmanager.api.LockEventListener;
08:
09: 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: }
|