1 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 |