Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
412681d8
D
Docs
项目概览
OpenHarmony
/
Docs
大约 2 年 前同步成功
通知
161
Star
293
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
412681d8
编写于
7月 12, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 12, 2023
浏览文件
操作
浏览文件
下载
差异文件
!20084 【分布式硬件DM】添加北向接口
Merge pull request !20084 from 史晓晓/master
上级
93c1e492
5734071b
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
1052 addition
and
0 deletion
+1052
-0
zh-cn/application-dev/reference/apis/js-apis-distributedDeviceManager.md
...on-dev/reference/apis/js-apis-distributedDeviceManager.md
+1005
-0
zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/changelogs-distributedDeviceManager.md
...penHarmony_4.0.9.2/changelogs-distributedDeviceManager.md
+47
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-distributedDeviceManager.md
0 → 100644
浏览文件 @
412681d8
此差异已折叠。
点击以展开。
zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/changelogs-distributedDeviceManager.md
0 → 100644
浏览文件 @
412681d8
# 设备管理ChangeLog
## cl.distributedDeviceManager.1 接口变更
从Openharmony 4.0.9.2版本开始,新增设备管理接口。
**变更影响**
原有的接口
[
API参考
](
../../../application-dev/reference/apis/js-apis-device-manager.md
)
暂时可继续使用,但是停止维护,建议使用新接口进行开发。
**关键的接口/组件变更**
##新增接口如下:
| 模块名 | 类名 | 新增接口声明 |
| ------------------------------------ | ------------------- | ------------------------------------------------------------ |
| @ohos.distributedDeviceManager | function |
**function**
createDeviceManager(bundleName: string): DeviceManager; |
| @ohos.distributedDeviceManager | function |
**function**
releaseDeviceManager(deviceManager: DeviceManager): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getAvailableDeviceListSync(): Array
<
DeviceBasicInfo
>
; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getAvailableDeviceList(callback:AsyncCallback
<
Array
<
DeviceBasicInfo
>>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getAvailableDeviceList(): Promise
<
Array
<
DeviceBasicInfo
>>
; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getLocalDeviceNetworkId(): string; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getLocalDeviceName(): string; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getLocalDeviceType(): number; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getLocalDeviceId(): string; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getDeviceName(networkId: string): string; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
getDeviceType(networkId: string): number; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
startDiscovering(discoverParam: {[key:
string]:
Object} , filterOptions?: {[key:
string]:
Object} ): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
stopDiscovering(): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
bindTarget(deviceId: string, bindParam: {[key:
string]:
Object} , callback: AsyncCallback
<
{deviceId: string}
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
unbindTarget(deviceId: string): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
replyUiAction(action: number, actionResult: string): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'replyResult', callback: Callback
<
{ param: string}
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'replyResult', callback?: Callback
<
{ param: string}
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'deviceStateChange', callback: Callback
<
{ action: DeviceStateChange, device: DeviceBasicInfo }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'deviceStateChange', callback?: Callback
<
{ action: DeviceStateChange, device: DeviceBasicInfo }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'discoverSuccess', callback: Callback
<
{ device: DeviceBasicInfo }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'discoverSuccess', callback?: Callback
<
{ device: DeviceBasicInfo }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'deviceNameChange', callback: Callback
<
{ deviceName: string }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'deviceNameChange', callback?: Callback
<
{ deviceName: string }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'discoverFailure', callback: Callback
<
{ reason: number }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'discoverFailure', callback?: Callback
<
{ reason: number }
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
on(type: 'serviceDie', callback?: Callback
<
{}
>
): void; |
| @ohos.distributedDeviceManager | DeviceManager |
**function**
off(type: 'serviceDie', callback?: Callback
<
{}
>
): void; |
**适配指导**
请参考各接口的
[
API参考
](
../../../application-dev/reference/apis/js-apis-distributedDeviceManager.md
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录