वेक लॉक को हटाना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
इस पेज पर, आपके ऐप्लिकेशन के पास मौजूद वेक लॉक को रिलीज़ करने का तरीका बताया गया है.
बैटरी खत्म होने से बचाने के लिए, जैसे ही आपके ऐप्लिकेशन का काम पूरा हो जाए वैसे ही वेक लॉक को रिलीज़ करना ज़रूरी है.
चालू वेक लॉक को रिलीज़ करना
ऐक्टिव वेक लॉक को रिलीज़ करने के लिए, उसके release()
तरीके को कॉल करें. ऐसा करने से, सीपीयू पर किया गया दावा हट जाता है.
उदाहरण के लिए, यहां दिया गया कोड वेक लॉक हासिल करता है, कुछ काम करता है, और फिर वेक लॉक को रिलीज़ कर देता है:
Kotlin
@Throws(MyException::class)
fun doSomethingAndRelease() {
wakeLock.apply {
try {
acquire()
doTheWork()
} finally {
release()
}
}
}
Java
void doSomethingAndRelease() throws MyException {
try {
wakeLock.acquire();
doTheWork();
} finally {
wakeLock.release();
}
}
जब वेक लॉक की ज़रूरत न हो, तो उन्हें तुरंत रिलीज़ कर दें. उदाहरण के लिए, अगर बैकग्राउंड में चल रहे किसी टास्क को पूरा करने के लिए वेक लॉक का इस्तेमाल किया जाता है, तो टास्क पूरा होने के तुरंत बाद लॉक को रिलीज़ करना न भूलें.
इस कोड के बारे में खास जानकारी
इस उदाहरण में, doTheWork()
तरीके से अपवाद मिल सकता है. इस वजह से, कोड finally
ब्लॉक में वेक लॉक को रिलीज़ करता है, ताकि यह पक्का किया जा सके कि अपवाद थ्रो होने पर भी वेक लॉक रिलीज़ हो जाए. यह पक्का करना बहुत ज़रूरी है कि आपने जो भी वेक लॉक सेट किए हैं उन्हें रिलीज़ कर दिया गया हो. इसलिए, आपको हर संभावित कोड पाथ की जांच करनी होगी, ताकि यह पक्का किया जा सके कि किसी भी कोड पाथ पर वेक लॉक चालू न रह जाए.
यह भी देखें:
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-08-30 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-08-30 (UTC) को अपडेट किया गया."],[],[],null,["This page describes how to release a wake lock held by your app.\nIt's important to release a wake lock as soon as your app is\nfinished using it to avoid draining the battery.\n\nRelease an active wake lock\n\nTo release an active wake lock, call its [`release()`](/reference/android/os/PowerManager.WakeLock#release()) method. Doing so\nreleases your claim to the CPU.\n\nFor example, the following code [acquires a wake lock](/develop/background-work/background-tasks/awake/wakelock/set),\ndoes some work, then releases the wake lock:\n\n\nKotlin \n\n```kotlin\n@Throws(MyException::class)\nfun doSomethingAndRelease() {\n wakeLock.apply {\n try {\n acquire()\n doTheWork()\n } finally {\n release()\n }\n }\n}https://github.com/android/snippets/blob/f95ab59fad80aeaf5d6a90bab8a01a126f20f44e/misc/src/main/java/com/example/snippets/backgroundwork/WakeLockSnippetsKotlin.kt#L42-L52\n```\n\nJava \n\n```java\nvoid doSomethingAndRelease() throws MyException {\n try {\n wakeLock.acquire();\n doTheWork();\n } finally {\n wakeLock.release();\n }\n}https://github.com/android/snippets/blob/f95ab59fad80aeaf5d6a90bab8a01a126f20f44e/misc/src/main/java/com/example/snippets/backgroundwork/WakeLockSnippetsJava.java#L27-L34\n```\n\n\u003cbr /\u003e\n\nMake sure to release wake locks as soon as they are no longer needed. For\nexample, if you use a wake lock to allow a background task to finish, make sure\nto release the lock as soon as the task finishes.\n\nKey points about this code\n\nIn this example, the method `doTheWork()` might throw an exception. For this\nreason, the code releases the wake lock in the `finally` block, to make sure\nthe wake lock is released whether or not an exception is thrown. It's very\nimportant to make sure every wake lock you set is released, so you need to\ncheck every possible code path to make sure the wake lock isn't left active\non any of them.\n\nSee also\n\n- [Set a wake lock](/develop/background-work/background-tasks/awake/wakelock/set)"]]