예제 #1
0
 @Override
 public V get(Object key) {
   lock.readLock().lock();
   try {
     return activeDelegate.get(key);
   } finally {
     lock.readLock().unlock();
   }
 }