Package EDU.oswego.cs.dl.util.concurrent

Examples of EDU.oswego.cs.dl.util.concurrent.NullSync


{
   private NullSync nullLock_;

   public LockStrategyNone()
   {
      nullLock_ = new NullSync();
   }
View Full Code Here


   private NullSync rLock_; // Null lock will always return true

   public LockStrategyReadUncommitted()
   {
      wLock_ = new FIFOSemaphore(1);
      rLock_ = new NullSync();
   }
View Full Code Here

TOP

Related Classes of EDU.oswego.cs.dl.util.concurrent.NullSync

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.