本文整理了Java中com.zsmartsystems.zigbee.app.otaserver.ZclOtaUpgradeServer.completeUpgrade()
方法的一些代码示例,展示了ZclOtaUpgradeServer.completeUpgrade()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZclOtaUpgradeServer.completeUpgrade()
方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.app.otaserver.ZclOtaUpgradeServer
类名称:ZclOtaUpgradeServer
方法名:completeUpgrade
[英]Instruct the server to complete the upgrade. This is only possible if the client state is ImageUpgradeStatus#DOWNLOAD_COMPLETE. The server will check the client status before sending the upgrade end response command. The caller will be notified through the ZigBeeOtaStatusCallback of the completion status of this method.
[中]指示服务器完成升级。只有当客户端状态为ImageUpgradeStatus#DOWNLOAD_COMPLETE时,才可能执行此操作。服务器将在发送升级结束响应命令之前检查客户端状态。调用方将通过ZigBeeStatusCallback收到此方法完成状态的通知。
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
otaServer.completeUpgrade();
} else {
Path file = FileSystems.getDefault().getPath("./", args[2]);
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
updateStatus(ZigBeeOtaServerStatus.OTA_TRANSFER_COMPLETE);
if (autoUpgrade) {
completeUpgrade();
内容来源于网络,如有侵权,请联系作者删除!