openharmony 鸿蒙 js-apis-fusionConnectivity-partnerAgent-sys

2026-08-25 浏览 (1)

@ohos.FusionConnectivity.partnerAgent (Device Status Notification Module) (System API)

This module uses Bluetooth communication technology to provide device discovery and device offline notification features for applications. The module can:

  • Dynamically listen to and discovers Bluetooth devices pre-registered by the applications.
  • Leverage the process startup mechanism to automatically start the PartnerAgentExtensionAbility process of the applications when the target devices appear.
  • Use the process destruction mechanism to automatically destroy the PartnerAgentExtensionAbility process of the applications when all the devices go offline.
  • Notify the applications of registered devices through the PartnerAgentExtensionAbility API.

NOTE

  • The initial APIs of this module are supported since API version 23. Newly added APIs will be marked with a superscript to indicate their earliest API version.

Modules to Import

import { partnerAgent } from '@kit.ConnectivityKit';

partnerAgent.enableDeviceControl

enableDeviceControl(deviceAddress: PartnerDeviceAddress): Promise<void>

Enables peripheral interconnection. This API uses a promise to return the result.

  • This API takes effect only for devices registered by an application using BindDevice. After being called, this API will provide the device interconnection capability for the application.
  • You can call isDeviceControlEnabled to check whether the peripheral interconnection feature is enabled. If the feature has been enabled, the repeated calling does not take effect.
  • You can call disableDeviceControl to disable the peripheral interconnection feature.

System API: This is a system API.

Required permissions: ohos.permission.ACCESS_BLUETOOTH

System capability: SystemCapability.Communication.FusionConnectivity.Core

Parameters

NameTypeMandatoryDescription
deviceAddressPartnerDeviceAddressYesAddress information of the device registered by the application.
The application must be configured with the bluetoothAddress option of the PartnerDeviceAddress type.

Return value

TypeDescription
Promise<void>Promise that returns no value.

Error codes

For details about the error codes, see Universal Error Codes and Error Codes of the Converged Short-Range Service Subsystem.

IDError Message
201Permission denied.
202Non-system applications are not allowed to use system APIs.
801Capability not supported.
34900001The device is not bound.
34900099Internal error.

Example

import { partnerAgent, common } from '@kit.ConnectivityKit';
try {
  let btAddr: common.BluetoothAddress = {
    "address": "11:22:33:44:55:66",
    "addressType": common.BluetoothAddressType.REAL,
  };
  let deviceAddress: partnerAgent.PartnerDeviceAddress = {
    "bluetoothAddress": btAddr,
  };
  partnerAgent.enableDeviceControl(deviceAddress)
    .then(() => {
      console.info(`enable device control success: ${btAddr.address}`);
    })
    .catch((err: BusinessError) => {
      console.error(`errCode: ${err.code}, errMessage: ${err.message}`);
    });
} catch (err) {
  console.error(`errCode: ${err.code}, errMessage: ${err.message}`);
}

partnerAgent.disableDeviceControl

disableDeviceControl(deviceAddress: PartnerDeviceAddress): Promise<void>

Disables peripheral interconnection. This API uses a promise to return the result.

  • This API takes effect only for devices registered by an application using BindDevice. After being called, this API will not provide the device interconnection capability for the application.
  • You can call isDeviceControlEnabled to check whether the peripheral interconnection feature is enabled. If the feature has been disabled, the repeated calling does not take effect.
  • After the feature is disabled, the PartnerAgentExtensionAbility process registered by the application will not be started when the devices that are registered by other applications using BindDevice are discovered. You can call enableDeviceControl to enable the feature again.

System API: This is a system API.

Required permissions: ohos.permission.ACCESS_BLUETOOTH

System capability: SystemCapability.Communication.FusionConnectivity.Core

Parameters

NameTypeMandatoryDescription
deviceAddressPartnerDeviceAddressYesAddress information of the device registered by the application.
The application must be configured with the bluetoothAddress option of the PartnerDeviceAddress type.

Return value

TypeDescription
Promise<void>Promise that returns no value.

Error codes

For details about the error codes, see Universal Error Codes and Error Codes of the Converged Short-Range Service Subsystem.

IDError Message
201Permission denied.
202Non-system applications are not allowed to use system APIs.
801Capability not supported.
34900001The device is not bound.
34900099Internal error.

Example

import { partnerAgent, common } from '@kit.ConnectivityKit';
try {
  let btAddr: common.BluetoothAddress = {
    "address": "11:22:33:44:55:66",
    "addressType": common.BluetoothAddressType.REAL,
  };
  let deviceAddress: partnerAgent.PartnerDeviceAddress = {
    "bluetoothAddress": btAddr,
  };
  partnerAgent.disableDeviceControl(deviceAddress)
    .then(() => {
      console.info(`disable device control success: ${btAddr.address}`);
    })
    .catch((err: BusinessError) => {
      console.error(`errCode: ${err.code}, errMessage: ${err.message}`);
    });
} catch (err) {
  console.error(`errCode: ${err.code}, errMessage: ${err.message}`);
}

你可能感兴趣的鸿蒙文章

openharmony 鸿蒙 js-apis-bluetooth-a2dp

openharmony 鸿蒙 js-apis-bluetooth-map

openharmony 鸿蒙 capi-oh-bluetooth-h

openharmony 鸿蒙 js-apis-nfcTag

openharmony 鸿蒙 js-apis-wifiManagerExt

openharmony 鸿蒙 js-apis-bluetooth-ble

openharmony 鸿蒙 errorcode-wifi

openharmony 鸿蒙 capi-bluetooth

openharmony 鸿蒙 js-apis-wifiext

openharmony 鸿蒙 js-apis-bluetooth-baseProfile-sys

  • 所属分类: 后端技术
  • 本文标签: 软件 鸿蒙
  • 版权声明: 本文链接 https://seaxiang.com/blog/vPDPi1MK