Java Doc for Mutex.java in  » Cache » ehcache » net » sf » ehcache » constructs » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Cache » ehcache » net.sf.ehcache.constructs.concurrent 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sf.ehcache.constructs.concurrent.Mutex

Mutex
public class Mutex implements Sync(Code)

version:
   $Id: Mutex.java 519 2007-07-27 07:11:45Z gregluck $
author:
   Doug Lea
author:
   A simple non-reentrant mutual exclusion lock.
author:
   The lock is free upon construction. Each acquire gets the
author:
   lock, and each release frees it. Releasing a lock that
author:
   is already free has no effect.
author:
  


author:
   This implementation makes no attempt to provide any fairness
author:
   or ordering guarantees. If you need them, consider using one of
author:
   the Semaphore implementations as a locking mechanism.
author:
  


author:
   Sample usage

author:
  


author:
   Mutex can be useful in constructions that cannot be
author:
   expressed using java synchronized blocks because the
author:
   acquire/release pairs do not occur in the same method or
author:
   code block. For example, you can use them for hand-over-hand
author:
   locking across the nodes of a linked list. This allows
author:
   extremely fine-grained locking, and so increases
author:
   potential concurrency, at the cost of additional complexity and
author:
   overhead that would normally make this worthwhile only in cases of
author:
   extreme contention.
author:
  


author:
   class Node {
author:
   Object item;
author:
   Node next;
author:
   Mutex lock = new Mutex(); // each node keeps its own lock
author:
  


author:
   Node(Object x, Node n) { item = x; next = n; }
author:
   }
author:
  


author:
   class List {
author:
   protected Node head; // pointer to first node of list
author:
  


author:
   // Use plain java synchronization to protect head field.
author:
   // (We could instead use a Mutex here too but there is no
author:
   // reason to do so.)
author:
   protected synchronized Node getHead() { return head; }
author:
  


author:
   boolean search(Object x) throws InterruptedException {
author:
   Node p = getHead();
author:
   if (p == null) return false;
author:
  


author:
   // (This could be made more compact, but for clarity of illustration,
author:
   // all of the cases that can arise are handled separately.)
author:
  


author:
   p.lock.acquire(); // Prime loop by acquiring first lock.
author:
   // (If the acquire fails due to
author:
   // interrupt, the method will throw
author:
   // InterruptedException now,
author:
   // so there is no need for any
author:
   // further cleanup.)
author:
   for (;;) {
author:
   if (x.equals(p.item)) {
author:
   p.lock.release(); // release current before return
author:
   return true;
author:
   }
author:
   else {
author:
   Node nextp = p.next;
author:
   if (nextp == null) {
author:
   p.lock.release(); // release final lock that was held
author:
   return false;
author:
   }
author:
   else {
author:
   try {
author:
   nextp.lock.acquire(); // get next lock before releasing current
author:
   }
author:
   catch (InterruptedException ex) {
author:
   p.lock.release(); // also release current if acquire fails
author:
   throw ex;
author:
   }
author:
   p.lock.release(); // release old lock now that new one held
author:
   p = nextp;
author:
   }
author:
   }
author:
   }
author:
   }
author:
  


author:
   synchronized void add(Object x) { // simple prepend
author:
   // The use of `synchronized' here protects only head field.
author:
   // The method does not need to wait out other traversers
author:
   // who have already made it past head.
author:
  


author:
   head = new Node(x, head);
author:
   }
author:
  


author:
   // ... other similar traversal and update methods ...
author:
   }
author:
  


author:
  


author:
  

[ Introduction to this package. ]



Field Summary
protected  booleaninUse
    


Method Summary
public  voidacquire()
     Wait (possibly forever) until successful passage. Fail only upon interuption.
public  booleanattempt(long msecs)
    
Parameters:
  msecs - the number of milleseconds to wait.An argument less than or equal to zero means not to wait at all.However, this may still requireaccess to a synchronization lock, which can impose unboundeddelay if there is a lot of contention among threads.
public synchronized  voidrelease()
     Potentially enable others to pass.

Because release does not raise exceptions, it can be used in `finally' clauses without requiring extra embedded try/catch blocks.


Field Detail
inUse
protected boolean inUse(Code)
The lock status *





Method Detail
acquire
public void acquire() throws InterruptedException(Code)
Wait (possibly forever) until successful passage. Fail only upon interuption. Interruptions always result in `clean' failures. On failure, you can be sure that it has not been acquired, and that no corresponding release should be performed. Conversely, a normal return guarantees that the acquire was successful.
See Also:   Sync.acquire
See Also:   



attempt
public boolean attempt(long msecs) throws InterruptedException(Code)

Parameters:
  msecs - the number of milleseconds to wait.An argument less than or equal to zero means not to wait at all.However, this may still requireaccess to a synchronization lock, which can impose unboundeddelay if there is a lot of contention among threads. true if acquired
See Also:   Sync.attempt(long)



release
public synchronized void release()(Code)
Potentially enable others to pass.

Because release does not raise exceptions, it can be used in `finally' clauses without requiring extra embedded try/catch blocks. But keep in mind that as with any java method, implementations may still throw unchecked exceptions such as Error or NullPointerException when faced with uncontinuable errors. However, these should normally only be caught by higher-level error handlers.
See Also:   Sync.release




Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.