Enum DataExecutionState
डेटाएक्सीक्यूशनस्टेटस
डेटा प्रोसेस करने की स्थितियों की जानकारी.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
SpreadsheetApp.DataExecutionState.RUNNING
.
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
DATA_EXECUTION_STATE_UNSUPPORTED | Enum | Apps Script में, डेटा लागू करने की स्थिति की जानकारी नहीं दी जा सकती. |
RUNNING | Enum | डेटा प्रोसेस होना शुरू हो गया है और चल रहा है. |
SUCCESS | Enum | डेटा प्रोसेस हो गया है. |
ERROR | Enum | डेटा प्रोसेस हो गया है और उसमें गड़बड़ियां हैं. |
NOT_STARTED | Enum | डेटा लागू करने की प्रोसेस शुरू नहीं हुई है. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-12-03 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-12-03 (UTC) को अपडेट किया गया."],[[["`DataExecutionState` is an enumeration used to represent the different states of a data execution within Google Apps Script."],["You can access the `DataExecutionState` enum's properties through `SpreadsheetApp.DataExecutionState`, followed by the specific property like `RUNNING` or `SUCCESS`."],["The available states include `DATA_EXECUTION_STATE_UNSUPPORTED`, `RUNNING`, `SUCCESS`, `ERROR`, and `NOT_STARTED`, each indicating a different phase or outcome of the data execution."]]],["The `DataExecutionState` enumeration defines five states for data execution: `DATA_EXECUTION_STATE_UNSUPPORTED` (not supported), `RUNNING` (in progress), `SUCCESS` (completed successfully), `ERROR` (completed with errors), and `NOT_STARTED` (hasn't begun). These states indicate the current status of a data execution process. The enum properties can be accessed by calling the parent class, name and property like `SpreadsheetApp.DataExecutionState.RUNNING`.\n"]]