- java.lang.Object
-
- java.lang.management.LockInfo
-
- Direct Known Subclasses:
- MonitorInfo
public class LockInfo extends Object
Information about a lock. A lock can be a built-in object monitor, an ownable synchronizer, or theCondition
object associated with synchronizers.An ownable synchronizer is a synchronizer that may be exclusively owned by a thread and uses
AbstractOwnableSynchronizer
(or its subclass) to implement its synchronization property.ReentrantLock
andReentrantReadWriteLock
are two examples of ownable synchronizers provided by the platform.MXBean Mapping
LockInfo is mapped to aCompositeData
as specified in the type mapping rules of MXBeans.- Since:
- 1.6
- See Also:
AbstractOwnableSynchronizer
,Condition
-
-
Constructor Summary
Constructors Constructor and Description LockInfo(String className, int identityHashCode)
Constructs a LockInfo object.
-
Method Summary
Methods Modifier and Type Method and Description String
getClassName()
Returns the fully qualified name of the class of the lock object.int
getIdentityHashCode()
Returns the identity hash code of the lock object returned from theSystem.identityHashCode(java.lang.Object)
method.String
toString()
Returns a string representation of a lock.
-
-
-
Constructor Detail
-
LockInfo
@ConstructorProperties(value={"className","identityHashCode"}) public LockInfo(String className, int identityHashCode)
Constructs a LockInfo object.- Parameters:
className
- the fully qualified name of the class of the lock object.identityHashCode
- theidentity hash code
of the lock object.
-
-
Method Detail
-
getClassName
public String getClassName()
Returns the fully qualified name of the class of the lock object.- Returns:
- the fully qualified name of the class of the lock object.
-
getIdentityHashCode
public int getIdentityHashCode()
Returns the identity hash code of the lock object returned from theSystem.identityHashCode(java.lang.Object)
method.- Returns:
- the identity hash code of the lock object.
-
toString
public String toString()
Returns a string representation of a lock. The returned string representation consists of the name of the class of the lock object, the at-sign character `@', and the unsigned hexadecimal representation of the identity hash code of the object. This method returns a string equals to the value of:lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/11/2024 04:02:24 Cette version de la page est en cache (à la date du 22/11/2024 04:02:24) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/lang/management/LockInfo.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.