|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use LockingException | |
|---|---|
| org.jasig.portal.concurrency | |
| org.jasig.portal.concurrency.locking | |
| org.jasig.portal.services | |
| Uses of LockingException in org.jasig.portal.concurrency |
|---|
| Methods in org.jasig.portal.concurrency that throw LockingException | |
|---|---|
void |
IEntityLockService.convert(IEntityLock lock,
int newType)
Attempts to change the lock's lockType to newType. |
void |
IEntityLockService.convert(IEntityLock lock,
int newType,
int newDuration)
Attempts to change the lock's lockType to newType. |
void |
IEntityLock.convert(int newType)
Attempts to change the lockType of this lock to
newType. |
void |
IEntityLock.convert(int newType,
int newDuration)
Attempts to change the lockType of this lock to
newType. |
boolean |
IEntityLockService.existsInStore(IEntityLock lock)
Answer if this IEntityLock exists in the store. |
boolean |
IEntityLock.isValid()
Answers if this lock is still good. |
boolean |
IEntityLockService.isValid(IEntityLock lock)
Answers if this IEntityLock represents a lock that is still
good. |
IEntityLock |
IEntityLockService.newLock(Class entityType,
String entityKey,
int lockType,
String owner)
Returns a lock for the entity, lock type and owner. |
IEntityLock |
IEntityLockService.newLock(Class entityType,
String entityKey,
int lockType,
String owner,
int durationSecs)
Returns a lock for the entity, lock type and owner. |
IEntityLock |
IEntityLockService.newLock(EntityIdentifier entityID,
int lockType,
String owner)
Returns a lock for the entity, lock type and owner. |
IEntityLock |
IEntityLockService.newLock(EntityIdentifier entityID,
int lockType,
String owner,
int durationSecs)
Returns a lock for the entity, lock type and owner. |
IEntityLockService |
IEntityLockServiceFactory.newLockService()
Return an IEntityLockService instance. |
void |
IEntityLock.release()
Invalidate the lock. |
void |
IEntityLockService.release(IEntityLock lock)
Releases the IEntityLock. |
void |
IEntityLock.renew()
Extends the expiration time of this lock for a service-defined period. |
void |
IEntityLockService.renew(IEntityLock lock)
Extends the expiration time of the lock by the default increment. |
void |
IEntityLockService.renew(IEntityLock lock,
int duration)
Extends the expiration time of the lock by duration seconds. |
void |
IEntityLock.renew(int duration)
Extends the expiration time of this lock for duration seconds. |
| Uses of LockingException in org.jasig.portal.concurrency.locking |
|---|
| Methods in org.jasig.portal.concurrency.locking that throw LockingException | |
|---|---|
void |
MemoryEntityLockStore.add(IEntityLock lock)
Adds this IEntityLock to the store. |
void |
RDBMEntityLockStore.add(IEntityLock lock)
Adds the lock to the underlying store. |
void |
IEntityLockStore.add(IEntityLock lock)
Adds this IEntityLock to the store. |
void |
ReferenceEntityLockService.convert(IEntityLock lock,
int newType)
Attempts to change the lock's lockType to newType. |
void |
ReferenceEntityLockService.convert(IEntityLock lock,
int newType,
int newDuration)
Attempts to change the lock's lockType to newType. |
void |
EntityLockImpl.convert(int newType)
Delegate to the service. |
void |
EntityLockImpl.convert(int newType,
int duration)
Delegate to the service. |
void |
MemoryEntityLockStore.delete(IEntityLock lock)
Deletes this IEntityLock from the store. |
void |
RDBMEntityLockStore.delete(IEntityLock lock)
If this IEntityLock exists, delete it. |
void |
IEntityLockStore.delete(IEntityLock lock)
Deletes this IEntityLock from the store. |
void |
RDBMEntityLockStore.deleteAll()
Delete all IEntityLocks from the underlying store. |
void |
IEntityLockStore.deleteAll()
Delete all IEntityLocks from the store. |
void |
MemoryEntityLockStore.deleteExpired(Date expiration)
Deletes the expired IEntityLocks from the underlying store. |
void |
RDBMEntityLockStore.deleteExpired(Date expiration)
Delete all expired IEntityLocks from the underlying store. |
void |
IEntityLockStore.deleteExpired(Date expiration)
Deletes the expired IEntityLocks from the underlying store. |
void |
RDBMEntityLockStore.deleteExpired(Date expiration,
Class entityType,
String entityKey)
Delete IEntityLocks from the underlying store that have expired as of expiration. |
void |
RDBMEntityLockStore.deleteExpired(IEntityLock lock)
Delete all expired IEntityLocks from the underlying store. |
boolean |
ReferenceEntityLockService.existsInStore(IEntityLock lock)
Answer if this IEntityLock exists in the store. |
IEntityLock[] |
MemoryEntityLockStore.find(Class entityType,
String entityKey,
Integer lockType,
Date expiration,
String lockOwner)
Returns an IEntityLock[] based on the params, any or all of which may be null. |
IEntityLock[] |
RDBMEntityLockStore.find(Class entityType,
String entityKey,
Integer lockType,
Date expiration,
String lockOwner)
Retrieve IEntityLocks from the underlying store. |
IEntityLock[] |
IEntityLockStore.find(Class entityType,
String entityKey,
Integer lockType,
Date expiration,
String lockOwner)
Returns an IEntityLock[] based on the params, any or all of which may be null. |
IEntityLock |
MemoryEntityLockStore.find(IEntityLock lock)
Returns this lock if it exists in the store. |
IEntityLock[] |
MemoryEntityLockStore.findUnexpired(Date expiration,
Class entityType,
String entityKey,
Integer lockType,
String lockOwner)
Returns an IEntityLock[] containing unexpired locks, based on the params, any or all of which may be null EXCEPT FOR expiration. |
IEntityLock[] |
RDBMEntityLockStore.findUnexpired(Date expiration,
Class entityType,
String entityKey,
Integer lockType,
String lockOwner)
Retrieve IEntityLocks from the underlying store. |
IEntityLock[] |
IEntityLockStore.findUnexpired(Date expiration,
Class entityType,
String entityKey,
Integer lockType,
String lockOwner)
Returns an IEntityLock[] containing unexpired locks, based on the params, any or all of which may be null EXCEPT FOR expiration. |
boolean |
EntityLockImpl.isValid()
Delegate to the service. |
boolean |
ReferenceEntityLockService.isValid(IEntityLock lock)
Answers if this IEntityLock represents a lock that is still
good. |
IEntityLock |
ReferenceEntityLockService.newLock(Class entityType,
String entityKey,
int lockType,
String owner)
Returns a lock for the entity, lock type and owner if no conflicting locks exist. |
IEntityLock |
ReferenceEntityLockService.newLock(Class entityType,
String entityKey,
int lockType,
String owner,
int durationSecs)
Returns a lock for the entity, lock type and owner if no conflicting locks exist. |
IEntityLock |
ReferenceEntityLockService.newLock(EntityIdentifier entityID,
int lockType,
String owner)
Returns a lock for the entity, lock type and owner if no conflicting locks exist. |
IEntityLock |
ReferenceEntityLockService.newLock(EntityIdentifier entityID,
int lockType,
String owner,
int durationSecs)
Returns a lock for the entity, lock type and owner if no conflicting locks exist. |
IEntityLockService |
ReferenceEntityLockServiceFactory.newLockService()
Return an instance of the service implementation. |
void |
EntityLockImpl.release()
Delegate to the service. |
void |
ReferenceEntityLockService.release(IEntityLock lock)
Releases the IEntityLock. |
void |
EntityLockImpl.renew()
Delegate to the service. |
void |
ReferenceEntityLockService.renew(IEntityLock lock)
Extends the expiration time of the lock by some service-defined increment. |
void |
ReferenceEntityLockService.renew(IEntityLock lock,
int duration)
Extends the expiration time of the lock by some service-defined increment. |
void |
EntityLockImpl.renew(int duration)
Delegate to the service. |
static IEntityLockStore |
RDBMEntityLockStore.singleton()
|
static IEntityLockService |
ReferenceEntityLockService.singleton()
|
void |
MemoryEntityLockStore.update(IEntityLock lock,
Date newExpiration)
|
void |
RDBMEntityLockStore.update(IEntityLock lock,
Date newExpiration)
|
void |
IEntityLockStore.update(IEntityLock lock,
Date newExpiration)
Updates the lock's expiration in the underlying store. |
void |
MemoryEntityLockStore.update(IEntityLock lock,
Date newExpiration,
Integer newLockType)
Make sure the store has a reference to the lock, and then add the lock to refresh the SmartCache wrapper. |
void |
RDBMEntityLockStore.update(IEntityLock lock,
Date newExpiration,
Integer newLockType)
Updates the lock's expiration and lockType in the
underlying store. |
void |
IEntityLockStore.update(IEntityLock lock,
Date newExpiration,
Integer newLockType)
Updates the lock's expiration and lockType in the
underlying store. |
| Constructors in org.jasig.portal.concurrency.locking that throw LockingException | |
|---|---|
RDBMEntityLockStore()
RDBMEntityGroupStore constructor. |
|
ReferenceEntityLockService()
ReferenceEntityLockingService constructor comment. |
|
| Uses of LockingException in org.jasig.portal.services |
|---|
| Methods in org.jasig.portal.services that throw LockingException | |
|---|---|
static EntityLockService |
EntityLockService.instance()
|
IEntityLock |
EntityLockService.newReadLock(Class entityType,
String entityKey,
String owner)
Returns a read lock for the entity type, entity key and owner. |
IEntityLock |
EntityLockService.newReadLock(Class entityType,
String entityKey,
String owner,
int duration)
Returns a read lock for the entity type, entity key and owner. |
IEntityLock |
EntityLockService.newReadLock(EntityIdentifier entityID,
String owner)
Returns a read lock for the IBasicEntity and owner. |
IEntityLock |
EntityLockService.newReadLock(EntityIdentifier entityID,
String owner,
int durationSecs)
Returns a read lock for the IBasicEntity, owner and duration. |
IEntityLock |
EntityLockService.newWriteLock(Class entityType,
String entityKey,
String owner)
Returns a write lock for the entity type, entity key and owner. |
IEntityLock |
EntityLockService.newWriteLock(Class entityType,
String entityKey,
String owner,
int durationSecs)
Returns a write lock for the entity type, entity key and owner. |
IEntityLock |
EntityLockService.newWriteLock(EntityIdentifier entityID,
String owner)
Returns a write lock for the IBasicEntity and owner. |
IEntityLock |
EntityLockService.newWriteLock(EntityIdentifier entityID,
String owner,
int durationSecs)
Returns a write lock for the IBasicEntity, owner and duration. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||