Source Code Cross Referenced for LockManager.java in  » Net » JGroups-2.4.1-sp3 » org » jgroups » blocks » 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 » Net » JGroups 2.4.1 sp3 » org.jgroups.blocks 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package org.jgroups.blocks;
02:
03:        import org.jgroups.ChannelException;
04:
05:        /**
06:         * <code>LockManager</code> represents generic lock manager that allows
07:         * obtaining and releasing locks on objects.
08:         * 
09:         * @author Roman Rokytskyy (rrokytskyy@acm.org)
10:         * @author Robert Schaffar-Taurok (robert@fusion.at)
11:         * @version $Id: LockManager.java,v 1.2 2005/06/08 15:56:54 publicnmi Exp $
12:         */
13:        public interface LockManager {
14:
15:            /**
16:             * Obtain lock on <code>obj</code> for specified <code>owner</code>.
17:             * Implementation should try to obtain lock few times within the
18:             * specified timeout.
19:             *
20:             * @param obj obj to lock, usually not full object but object's ID.
21:             * @param owner object identifying entity that will own the lock.
22:             * @param timeout maximum time that we grant to obtain a lock.
23:             *
24:             * @throws LockNotGrantedException if lock is not granted within
25:             * specified period.
26:             *
27:             * @throws ClassCastException if <code>obj</code> and/or
28:             * <code>owner</code> is not of type that implementation expects to get
29:             * (for example, when distributed lock manager obtains non-serializable
30:             * <code>obj</code> or <code>owner</code>).
31:             * 
32:             * @throws ChannelException if something bad happened to communication
33:             * channel.
34:             */
35:            void lock(Object obj, Object owner, int timeout)
36:                    throws LockNotGrantedException, ClassCastException,
37:                    ChannelException;
38:
39:            /**
40:             * Release lock on <code>obj</code> owned by specified <code>owner</code>.
41:             *
42:             * since 2.2.9 this method is only a wrapper for 
43:             * unlock(Object lockId, Object owner, boolean releaseMultiLocked).
44:             * Use that with releaseMultiLocked set to true if you want to be able to
45:             * release multiple locked locks (for example after a merge)
46:             * 
47:             * @param obj obj to lock, usually not full object but object's ID.
48:             * @param owner object identifying entity that will own the lock.
49:             *
50:             * @throws LockOwnerMismatchException if lock is owned by another object.
51:             *
52:             * @throws ClassCastException if <code>obj</code> and/or
53:             * <code>owner</code> is not of type that implementation expects to get
54:             * (for example, when distributed lock manager obtains non-serializable
55:             * <code>obj</code> or <code>owner</code>).
56:             * 
57:             * @throws ChannelException if something bad happened to communication
58:             * channel.
59:             */
60:            void unlock(Object obj, Object owner)
61:                    throws LockNotReleasedException, ClassCastException,
62:                    ChannelException;
63:
64:            /**
65:             * Release lock on <code>obj</code> owned by specified <code>owner</code>.
66:             *
67:             * @param obj obj to lock, usually not full object but object's ID.
68:             * @param owner object identifying entity that will own the lock.
69:             * @param releaseMultiLocked force unlocking of the lock if the local
70:             * lockManager owns the lock even if another lockManager owns the same lock
71:             *
72:             * @throws LockOwnerMismatchException if lock is owned by another object.
73:             *
74:             * @throws ClassCastException if <code>obj</code> and/or
75:             * <code>owner</code> is not of type that implementation expects to get
76:             * (for example, when distributed lock manager obtains non-serializable
77:             * <code>obj</code> or <code>owner</code>).
78:             * 
79:             * @throws ChannelException if something bad happened to communication
80:             * channel.
81:             * 
82:             * @throws LockMultiLockedException if the lock was unlocked, but another
83:             * node already held the lock
84:             */
85:            void unlock(Object obj, Object owner, boolean releaseMultiLocked)
86:                    throws LockNotReleasedException, ClassCastException,
87:                    ChannelException, LockMultiLockedException;
88:
89:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.