Source Code Cross Referenced for LockManager.java in  » Database-ORM » db-ojb » org » apache » ojb » broker » locking » 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 » Database ORM » db ojb » org.apache.ojb.broker.locking 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.apache.ojb.broker.locking;
002:
003:        /* Copyright 2002-2005 The Apache Software Foundation
004:         *
005:         * Licensed under the Apache License, Version 2.0 (the "License");
006:         * you may not use this file except in compliance with the License.
007:         * You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:
018:        /**
019:         * This interface declares the functionality of the OJB locking-api for support of
020:         * pessimistic locking.
021:         * <p>
022:         * OJB allows to provide user defined implementations of this interface.
023:         * To activate a user defined LockManager implementation it must be configured in
024:         * the OJB.properties file.
025:         * </p>
026:         * <p>
027:         * All locks have to be reentrant, this means if you already have a lock for
028:         * writing and you try to acquire write access again you will not be blocked
029:         * by this first lock.
030:         * </p>
031:         * <p>
032:         * It's optional to support the <em>lockTimeout</em> and <em>blockTimeout</em> properties.
033:         * </p>
034:         *
035:         * @see LockManagerInMemoryImpl
036:         * @see LockManagerCommonsImpl
037:         * @version $Id: LockManager.java,v 1.1.2.5 2005/12/21 22:25:32 tomdz Exp $
038:         */
039:        public interface LockManager extends IsolationLevels {
040:            /**
041:             * Default lock timeout value - set to 60000 ms.
042:             */
043:            public final static long DEFAULT_LOCK_TIMEOUT = 60000;
044:
045:            /**
046:             * Default lock wait time in millisecond - set to 1000 ms;
047:             */
048:            public final static long DEFAULT_BLOCK_TIMEOUT = 1000;
049:
050:            /**
051:             * The maximal time to wait for acquire a lock.
052:             *
053:             * @return
054:             */
055:            public long getBlockTimeout();
056:
057:            /**
058:             * Set the maximal time to wait for acquire a lock in milliseconds.
059:             * All so called <em>non-blocking</em> implementation will ignore this setting.
060:             *
061:             * @param timeout The time to wait for acquire a lock.
062:             */
063:            public void setBlockTimeout(long timeout);
064:
065:            /**
066:             * Get the current used lock timeout value in milliseconds.
067:             * @return Current used locking timeout value in ms.
068:             */
069:            public long getLockTimeout();
070:
071:            /**
072:             * Set the lock timeout value in milliseconds. If timeout was set to <em>-1</em>
073:             * the never will never timeout.
074:             *
075:             * @param timeout The lock timeout in <em>ms</em> of acquired read/write/upgrade locks.
076:             */
077:            public void setLockTimeout(long timeout);
078:
079:            /**
080:             * Returns info about the used lock manager implementation and the state
081:             * of the lock manager.
082:             */
083:            public String getLockInfo();
084:
085:            /**
086:             * Acquires a readlock for lock key on resource object.
087:             * Returns true if successful, else false.
088:             *
089:             * @param key            The owner key of the lock.
090:             * @param resourceId     The resource to lock.
091:             * @param isolationLevel The isolation level of the lock.
092:             * @return <em>True</em> if the lock was successfully acquired.
093:             */
094:            public boolean readLock(Object key, Object resourceId,
095:                    int isolationLevel);
096:
097:            /**
098:             * Acquires a write lock for lock key on resource object.
099:             * Returns true if successful, else false.
100:             *
101:             * @param key            The owner key of the lock.
102:             * @param resourceId     The resource to lock.
103:             * @param isolationLevel The isolation level of the lock.
104:             * @return <em>True</em> if the lock was successfully acquired.
105:             */
106:            public boolean writeLock(Object key, Object resourceId,
107:                    int isolationLevel);
108:
109:            /**
110:             * Acquire an upgrade lock.
111:             * (Current implementations always acquire a write lock instead).
112:             *
113:             * @param key            The owner key of the lock.
114:             * @param resourceId     The resource to lock.
115:             * @param isolationLevel The isolation level of the lock.
116:             * @return <em>True</em> if the lock was successfully acquired.
117:             */
118:            public boolean upgradeLock(Object key, Object resourceId,
119:                    int isolationLevel);
120:
121:            /**
122:             * Releases a lock for lock key on resource object.
123:             * Returns true if successful, else false.
124:             *
125:             * @param key            The owner key of the lock.
126:             * @param resourceId     The resource to release.
127:             * @return <em>True</em> if the lock was successfully released.
128:             */
129:            public boolean releaseLock(Object key, Object resourceId);
130:
131:            /**
132:             * Release all resource locks hold by the specified owner key.
133:             *
134:             * @param key The owner key to release all associated locks.
135:             */
136:            public void releaseLocks(Object key);
137:
138:            /**
139:             * Checks if there is a read lock for owner key on resource object.
140:             * Returns true if so, else false.
141:             *
142:             * @param key            The owner key of the lock.
143:             * @param resourceId     The resource to check.
144:             * @return <em>True</em> if the lock exists.
145:             */
146:            public boolean hasRead(Object key, Object resourceId);
147:
148:            /**
149:             * Checks if there is a write lock for lock key on resource object.
150:             * Returns true if so, else false.
151:             *
152:             * @param key            The owner key of the lock.
153:             * @param resourceId     The resource to check.
154:             * @return <em>True</em> if the lock exists.
155:             */
156:            public boolean hasWrite(Object key, Object resourceId);
157:
158:            /**
159:             * Checks if there is a upgrade lock for lock key on resource object.
160:             * Returns true if so, else false.
161:             *
162:             * @param key            The owner key of the lock.
163:             * @param resourceId     The resource to check.
164:             * @return <em>True</em> if the lock exists.
165:             */
166:            public boolean hasUpgrade(Object key, Object resourceId);
167:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.