Java Doc 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 Reference  Class Diagram Java Document (Java Doc) 


org.apache.ojb.broker.locking.LockManager

All known Subclasses:   org.apache.ojb.broker.locking.LockManagerInMemoryImpl,  org.apache.ojb.broker.locking.LockManagerRemoteImpl,  org.apache.ojb.broker.locking.LockManagerCommonsImpl,
LockManager
public interface LockManager extends IsolationLevels(Code)
This interface declares the functionality of the OJB locking-api for support of pessimistic locking.

OJB allows to provide user defined implementations of this interface. To activate a user defined LockManager implementation it must be configured in the OJB.properties file.

All locks have to be reentrant, this means if you already have a lock for writing and you try to acquire write access again you will not be blocked by this first lock.

It's optional to support the lockTimeout and blockTimeout properties.


See Also:   LockManagerInMemoryImpl
See Also:   LockManagerCommonsImpl
version:
   $Id: LockManager.java,v 1.1.2.5 2005/12/21 22:25:32 tomdz Exp $


Field Summary
final public static  longDEFAULT_BLOCK_TIMEOUT
    
final public static  longDEFAULT_LOCK_TIMEOUT
     Default lock timeout value - set to 60000 ms.


Method Summary
public  longgetBlockTimeout()
     The maximal time to wait for acquire a lock.
public  StringgetLockInfo()
     Returns info about the used lock manager implementation and the state of the lock manager.
public  longgetLockTimeout()
     Get the current used lock timeout value in milliseconds.
public  booleanhasRead(Object key, Object resourceId)
     Checks if there is a read lock for owner key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check.
public  booleanhasUpgrade(Object key, Object resourceId)
     Checks if there is a upgrade lock for lock key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check.
public  booleanhasWrite(Object key, Object resourceId)
     Checks if there is a write lock for lock key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check.
public  booleanreadLock(Object key, Object resourceId, int isolationLevel)
     Acquires a readlock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock.
public  booleanreleaseLock(Object key, Object resourceId)
     Releases a lock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to release.
public  voidreleaseLocks(Object key)
     Release all resource locks hold by the specified owner key.
public  voidsetBlockTimeout(long timeout)
     Set the maximal time to wait for acquire a lock in milliseconds.
public  voidsetLockTimeout(long timeout)
     Set the lock timeout value in milliseconds.
public  booleanupgradeLock(Object key, Object resourceId, int isolationLevel)
     Acquire an upgrade lock. (Current implementations always acquire a write lock instead).
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock.
public  booleanwriteLock(Object key, Object resourceId, int isolationLevel)
     Acquires a write lock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock.

Field Detail
DEFAULT_BLOCK_TIMEOUT
final public static long DEFAULT_BLOCK_TIMEOUT(Code)
Default lock wait time in millisecond - set to 1000 ms;



DEFAULT_LOCK_TIMEOUT
final public static long DEFAULT_LOCK_TIMEOUT(Code)
Default lock timeout value - set to 60000 ms.





Method Detail
getBlockTimeout
public long getBlockTimeout()(Code)
The maximal time to wait for acquire a lock.



getLockInfo
public String getLockInfo()(Code)
Returns info about the used lock manager implementation and the state of the lock manager.



getLockTimeout
public long getLockTimeout()(Code)
Get the current used lock timeout value in milliseconds. Current used locking timeout value in ms.



hasRead
public boolean hasRead(Object key, Object resourceId)(Code)
Checks if there is a read lock for owner key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check. True if the lock exists.



hasUpgrade
public boolean hasUpgrade(Object key, Object resourceId)(Code)
Checks if there is a upgrade lock for lock key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check. True if the lock exists.



hasWrite
public boolean hasWrite(Object key, Object resourceId)(Code)
Checks if there is a write lock for lock key on resource object. Returns true if so, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to check. True if the lock exists.



readLock
public boolean readLock(Object key, Object resourceId, int isolationLevel)(Code)
Acquires a readlock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock. True if the lock was successfully acquired.



releaseLock
public boolean releaseLock(Object key, Object resourceId)(Code)
Releases a lock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to release. True if the lock was successfully released.



releaseLocks
public void releaseLocks(Object key)(Code)
Release all resource locks hold by the specified owner key.
Parameters:
  key - The owner key to release all associated locks.



setBlockTimeout
public void setBlockTimeout(long timeout)(Code)
Set the maximal time to wait for acquire a lock in milliseconds. All so called non-blocking implementation will ignore this setting.
Parameters:
  timeout - The time to wait for acquire a lock.



setLockTimeout
public void setLockTimeout(long timeout)(Code)
Set the lock timeout value in milliseconds. If timeout was set to -1 the never will never timeout.
Parameters:
  timeout - The lock timeout in ms of acquired read/write/upgrade locks.



upgradeLock
public boolean upgradeLock(Object key, Object resourceId, int isolationLevel)(Code)
Acquire an upgrade lock. (Current implementations always acquire a write lock instead).
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock. True if the lock was successfully acquired.



writeLock
public boolean writeLock(Object key, Object resourceId, int isolationLevel)(Code)
Acquires a write lock for lock key on resource object. Returns true if successful, else false.
Parameters:
  key - The owner key of the lock.
Parameters:
  resourceId - The resource to lock.
Parameters:
  isolationLevel - The isolation level of the lock. True if the lock was successfully acquired.



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