Lines Matching refs:remove
354 ## notificationSubscribe.remove
356 remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: Asyn…
398 console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
400 console.info("remove success");
411 notificationSubscribe.remove(bundle, notificationKey, reason, removeCallback);
416 ## notificationSubscribe.remove
418 remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\<void…
471 notificationSubscribe.remove(bundle, notificationKey, reason).then(() => {
472 console.info("remove success");
474 console.error("remove fail: " + JSON.stringify(err));
478 ## notificationSubscribe.remove
480 remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\<void\>): void
520 console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
522 console.info("remove success");
526 notificationSubscribe.remove(hashCode, reason, removeCallback);
529 ## notificationSubscribe.remove
531 remove(hashCode: string, reason: RemoveReason): Promise\<void\>
575 notificationSubscribe.remove(hashCode, reason).then(() => {
576 console.info("remove success");
578 console.error("remove fail: " + JSON.stringify(err));
582 ## notificationSubscribe.remove<sup>10+</sup>
584 remove(hashCodes: Array\<String\>, reason: RemoveReason, callback: AsyncCallback\<void\>): void
623 console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
625 console.info("remove success");
629 notificationSubscribe.remove(hashCodes, reason, removeCallback);
632 ## notificationSubscribe.remove<sup>10+</sup>
634 remove(hashCodes: Array\<String\>, reason: RemoveReason): Promise\<void\>
677 notificationSubscribe.remove(hashCodes, reason).then(() => {
678 console.info("remove success");
680 console.error("remove fail: " + JSON.stringify(err));