Lines Matching refs:abortSession

2225 ## huks.abortSession<sup>9+</sup>
2227 abortSession(handle: number, options: HuksOptions, callback: AsyncCallback\<void>) : void
2239 | handle | number | Yes | Handle for the **abortSession** operation. …
2240 | options | [HuksOptions](#huksoptions) | Yes | Parameter set used for the **abortSession** opera…
2241 | callback | AsyncCallback\<void> | Yes | Callback used to return the **abortSession** oper…
2264 * call huks.abortSession to terminate the use of the key.
2307 … huks.initSession(keyAlias, options, (error, data) => {// Use abortSession to abort initSession.
2313 huks.abortSession(handle, options, (error, data) => {
2315 console.error(`callback: abortSession failed`);
2317 console.info(`callback: abortSession success`);
2330 ## huks.abortSession<sup>9+</sup>
2332 abortSession(handle: number, options: HuksOptions) : Promise\<void>;
2344 | handle | number | Yes | Handle for the **abortSession** operation. …
2345 | options | [HuksOptions](#huksoptions) | Yes | Parameter set used for the **abortSession** operat…
2351 | Promise\<void> | Promise used to return the **abortSession** operation result.|
2374 * call huks.abortSession to terminate the use of the key.
2486 await huks.abortSession(handle, options)
2488 console.info(`promise: abortSession success`);
2491 console.error(`promise: abortSession failed`);
2494 console.error(`promise: abortSession input arg invalid`);
2500 await huksInit(); // Use abortSession to abort initSession.
3757 > This API is deprecated since API version 9. You are advised to use [huks.abortSession<sup>9+</sup…
3869 > This API is deprecated since API version 9. You are advised to use [huks.abortSession<sup>9+</sup…