[ Web Proxy ]
URL:
Viewing: https://developer.android.com/reference/java/util/concurrent/locks/AbstractOwnableSynchronizer [Back]  [Original]

AbstractOwnableSynchronizer  |  API reference  |  Android Developers Skip to main content
Essentials Design & Plan Develop Google Play Blog
Search:
Android Studio
Android Developers [Android Developers]
Stay organized with collections Save and categorize content based on your preferences.

AbstractOwnableSynchronizer

public abstract class AbstractOwnableSynchronizer
extends Object implements Serializable

java.lang.Object
   ↳ java.util.concurrent.locks.AbstractOwnableSynchronizer


A synchronizer that may be exclusively owned by a thread. This class provides a basis for creating locks and related synchronizers that may entail a notion of ownership. The AbstractOwnableSynchronizer class itself does not manage or use this information. However, subclasses and tools may use appropriately maintained values to help control and monitor access and provide diagnostics.

Summary

Protected constructors

AbstractOwnableSynchronizer()

Empty constructor for use by subclasses.

Protected methods

final Thread getExclusiveOwnerThread()

Returns the thread last set by setExclusiveOwnerThread, or null if never set.

final void setExclusiveOwnerThread(Thread thread)

Sets the thread that currently owns exclusive access.

Inherited methods

Protected constructors

AbstractOwnableSynchronizer

Added in API level 5
protected AbstractOwnableSynchronizer ()

Empty constructor for use by subclasses.

Protected methods

getExclusiveOwnerThread

Added in API level 5
protected final Thread getExclusiveOwnerThread ()

Returns the thread last set by setExclusiveOwnerThread, or null if never set. This method does not otherwise impose any synchronization or volatile field accesses.

Returns
Thread the owner thread

setExclusiveOwnerThread

Added in API level 5
protected final void setExclusiveOwnerThread (Thread thread)

Sets the thread that currently owns exclusive access. A null argument indicates that no thread owns access. This method does not otherwise impose any synchronization or volatile field accesses.

Parameters
thread Thread: the owner thread

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2026-08-03 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-03 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page