Stay organized with collections
Save and categorize content based on your preferences.
MessageQueue.IdleHandler
public
static
interface
MessageQueue.IdleHandler
android.os.MessageQueue.IdleHandler
|
Callback interface for discovering when a thread is going to block
waiting for more messages.
Summary
Public methods |
abstract
boolean
|
queueIdle()
Called when the message queue has run out of messages and will now
wait for more.
|
Public methods
queueIdle
public abstract boolean queueIdle ()
Called when the message queue has run out of messages and will now
wait for more. Return true to keep your idle handler active, false
to have it removed. This may be called if there are still messages
pending in the queue, but they are all scheduled to be dispatched
after the current time.
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 2025-02-10 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 2025-02-10 UTC."],[],[],null,["# MessageQueue.IdleHandler\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nMessageQueue.IdleHandler\n========================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/os/MessageQueue.IdleHandler \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\n\ninterface\nMessageQueue.IdleHandler\n`\n\n\n`\n\n\n`\n\n|-------------------------------------|\n| android.os.MessageQueue.IdleHandler |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nCallback interface for discovering when a thread is going to block\nwaiting for more messages.\n\nSummary\n-------\n\n| ### Public methods ||\n|---------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract boolean` | ` `[queueIdle](/reference/android/os/MessageQueue.IdleHandler#queueIdle())`() ` Called when the message queue has run out of messages and will now wait for more. |\n\nPublic methods\n--------------\n\n### queueIdle\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract boolean queueIdle ()\n```\n\nCalled when the message queue has run out of messages and will now\nwait for more. Return true to keep your idle handler active, false\nto have it removed. This may be called if there are still messages\npending in the queue, but they are all scheduled to be dispatched\nafter the current time.\n\n\u003cbr /\u003e\n\n| Returns ||\n|-----------|--------|\n| `boolean` | \u003cbr /\u003e |"]]