harmony 鸿蒙MissionCallback
MissionCallback
The MissionCallback module defines the callbacks invoked after synchronization starts. These callbacks can be used as input parameters in registerMissionListener.
NOTE
The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
System capability: SystemCapability.Ability.AbilityRuntime.Mission
Name | Template | Readable | Writable | Description |
---|---|---|---|---|
notifyMissionsChanged(deviceId: string) | function | Yes | No | Callback used to notify the mission change event and return the device ID. |
notifySnapshot(deviceId: string, mission: number) | function | Yes | No | Callback used to notify the snapshot change event and return the device ID and mission ID. |
notifyNetDisconnect(deviceId: string, state: number) | function | Yes | No | Callback used to notify the disconnection event and return the device ID and network status. |
Example
import distributedMissionManager from '@ohos.distributedMissionManager';
distributedMissionManager.registerMissionListener(
{
deviceId: '123456'
},
{
notifyMissionsChanged: (deviceId) => {
console.log(`notifyMissionsChanged deviceId: ${JSON.stringify(deviceId)}`);
},
notifySnapshot: (deviceId, mission) => {
console.log(`notifySnapshot deviceId: ${JSON.stringify(deviceId)}`);
console.log(`notifySnapshot mission: ${JSON.stringify(mission)}`);
},
notifyNetDisconnect: (deviceId, state) => {
console.log(`notifyNetDisconnect deviceId: ${JSON.stringify(deviceId)}`);
console.log(`notifyNetDisconnect state: ${JSON.stringify(state)}`);
}
});
你可能感兴趣的鸿蒙文章
harmony 鸿蒙System Common Events (To Be Deprecated Soon)
harmony 鸿蒙System Common Events
harmony 鸿蒙API Reference Document Description
harmony 鸿蒙Enterprise Device Management Overview (for System Applications Only)
harmony 鸿蒙BundleStatusCallback
harmony 鸿蒙@ohos.bundle.innerBundleManager (innerBundleManager)
harmony 鸿蒙@ohos.distributedBundle (Distributed Bundle Management)
harmony 鸿蒙@ohos.bundle (Bundle)
harmony 鸿蒙@ohos.enterprise.EnterpriseAdminExtensionAbility (EnterpriseAdminExtensionAbility)
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦