Lines Matching refs:execute
21 Defines the parameter used to execute an InsightIntent call.
39 ## insightIntentDriver.execute
41 execute(param: ExecuteParam, callback: AsyncCallback<insightIntent.ExecuteResult>): void
61 | param | [ExecuteParam](#executeparam) | Yes| Parameter used to execute the InsightIntent call.|
107 insightIntentDriver.execute(param, (error, data: insightIntent.ExecuteResult) => {
109 …hilog.error(0x0000, 'testTag', 'execute insight intent failed with %{public}s', JSON.stringify(err…
111 hilog.info(0x0000, 'testTag', '%{public}s', 'execute insight intent succeed');
113 hilog.info(0x0000, 'testTag', 'execute insight intent return %{public}d', data.code);
114 …hilog.info(0x0000, 'testTag', 'execute insight intent result %{public}s', JSON.stringify(data.resu…
117 …hilog.error(0x0000, 'testTag', 'execute insight intent error caught %{public}s', JSON.stringify(er…
122 ## insightIntentDriver.execute
124 execute(param: ExecuteParam): Promise<insightIntent.ExecuteResult>
144 | param | [ExecuteParam](#executeparam) | Yes| Parameter used to execute the InsightIntent call.|
195 let resultData: insightIntent.ExecuteResult = await insightIntentDriver.execute(param);
196 hilog.info(0x0000, 'testTag', 'execute insight intent return %{public}d', resultData.code);
197 …hilog.info(0x0000, 'testTag', 'execute insight intent result %{public}s', JSON.stringify(resultDat…
199 …hilog.error(0x0000, 'testTag', 'execute insight intent error caught %{public}s', JSON.stringify(er…