From ae92ce6c38d16084f68687ce8bfbcd543696e54d Mon Sep 17 00:00:00 2001 From: Yippo Date: Wed, 15 Feb 2023 09:05:37 +0000 Subject: [PATCH] =?UTF-8?q?=E3=80=90IPC&RPC=E3=80=91unregisterDeathRecipie?= =?UTF-8?q?nt=E6=8E=A5=E5=8F=A3=E5=8F=98=E6=9B=B4changelog=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Yippo --- .../ changelogs-softbus.md | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/ changelogs-softbus.md diff --git a/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/ changelogs-softbus.md b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/ changelogs-softbus.md new file mode 100644 index 0000000000..7613c052e7 --- /dev/null +++ b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/ changelogs-softbus.md @@ -0,0 +1,27 @@ +# 软总线子系统ChangeLog + +## cl.softbus.1 IPC接口中unregisterDeathRecipient接口返回值变更,更改为void。 + +unregisterDeathRecipient(recipient: DeathRecipient, flags: number)方法返回值为boolean,更正为void。 + +**变更影响** + +该unregisterDeathRecipient接口如果需要继续使用,建议优先使用removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean方法。 + +**关键的接口/组件变更** + +- 变更前: + +```js + unregisterDeathRecipient(recipient: DeathRecipient, flags: number): boolean +``` + +- 变更后: + +```js + unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void +``` + +**适配指导** + +该unregisterDeathRecipient接口如果需要继续使用,建议优先使用removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean方法。 \ No newline at end of file -- GitLab