संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
ब्लॉकली > RenderedConnection > TrackedState
RenderedConnection.TrackedState एनम
अलग-अलग तरह के ट्रैक किए गए राज्यों के लिए Enum.
Will_Track का मतलब है कि यह कनेक्शन, इसे पाने के लिए कॉल करने की अगली कार्रवाई पर db से खुद को जोड़ लेगा.
UNTRED का मतलब है कि यह कनेक्शन, डेटाबेस में खुद को तब तक नहीं जोड़ेगा, जब तक setTracking(true) को साफ़ तौर पर कॉल नहीं किया जाता.
ट्रैक किए जाने का मतलब है कि अभी इस कनेक्शन को ट्रैक किया जा रहा है.
हस्ताक्षर:
enum TrackedState
इन्यूमरेशन सदस्य
सदस्य |
मान |
ब्यौरा |
ट्रैक किया गया |
1 |
|
ट्रैक नहीं किया गया |
0 |
|
WILL_TRACK |
-1 |
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (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-07-25 (UTC) को अपडेट किया गया."],[],["The `TrackedState` enum defines three states for a connection: `TRACKED`, `UNTRACKED`, and `WILL_TRACK`. `WILL_TRACK` indicates that the connection will be added to the database on the next `moveTo` call. `UNTRACKED` means the connection won't be added until `setTracking(true)` is called. `TRACKED` signifies the connection is currently tracked in the database. These states determine how and when a connection interacts with the database.\n"]]