Uses of Class
org.jgroups.protocols.Locking.Type
-
Packages that use Locking.Type Package Description org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network. -
-
Uses of Locking.Type in org.jgroups.protocols
Fields in org.jgroups.protocols declared as Locking.Type Modifier and Type Field Description protected Locking.Type
Locking.Request. type
protected Locking.Type
Locking.Response. type
Methods in org.jgroups.protocols that return Locking.Type Modifier and Type Method Description Locking.Type
Locking.Request. getType()
static Locking.Type
Locking.Type. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Locking.Type[]
Locking.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jgroups.protocols with parameters of type Locking.Type Modifier and Type Method Description protected boolean
Locking.ServerLock. isRequestPresent(Locking.Type type, Owner owner)
Checks if a certain request from a given owner is already in the queueprotected void
Locking.ServerLock. removeRequest(Locking.Type type, Owner owner)
protected void
Locking. sendLockResponse(Locking.Type type, Owner dest, java.lang.String lock_name, int lock_id)
protected void
Locking. sendRequest(Address dest, Locking.Type type, java.lang.String lock_name, int lock_id, Owner owner, long timeout, boolean is_trylock)
protected void
Locking. sendRequest(Address dest, Locking.Type type, java.lang.String lock_name, Owner owner, long timeout, boolean is_trylock)
protected void
CENTRAL_LOCK. updateBackups(Locking.Type type, java.lang.String lock_name, Owner owner)
Constructors in org.jgroups.protocols with parameters of type Locking.Type Constructor Description Request(Locking.Type type)
Request(Locking.Type type, java.lang.String lock_name, Owner owner, long timeout)
Request(Locking.Type type, java.lang.String lock_name, Owner owner, long timeout, boolean is_trylock)
Response(Locking.Type type, Owner owner, java.lang.String lock_name, int lock_id)
-