कंटेनर के उपलब्ध होने का इंतज़ार करता है और अनुरोध किया गया कंटेनर दिखाता है.
जब तक कंटेनर उपलब्ध नहीं हो जाता, तब तक यह तरीका ब्लॉक रहेगा.
पब्लिक
ऐब्स्ट्रैक्ट
बूलियन
isDone()
यह दिखाता है कि कंटेनर उपलब्ध है या नहीं. यह कंटेनर,
डिफ़ॉल्ट कंटेनर हो सकता है. यह देखने के लिए कि यह डिफ़ॉल्ट कंटेनर है या नहीं, isDefault() का इस्तेमाल करें.
रिटर्न
अगर कंटेनर उपलब्ध है, तो वैल्यू 'सही' होगी. अगर get() ब्लॉक हो जाएगा और कंटेनर के उपलब्ध होने का इंतज़ार करेगा, तो 'गलत' दिखाता है.
[[["समझने में आसान है","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-07-25 (UTC) को अपडेट किया गया."],[],["`ContainerFuture` provides an interface to retrieve a `Container`. The `get()` method blocks until a `Container` is available and then returns it. The `isDone()` method checks if a `Container` is already available, returning `true` if so, and `false` if `get()` will block. `isDone` could be the default container, to check if this is the case use `isDefault()`. `get()` waits for the container to be ready and returns it.\n"]]