Tauri onUpdaterEvent

2024-02-05 17:48 更新
onUpdaterEvent(: ): Promise<UnlistenFnhandlerfn>

侦听更新程序事件。

import { onUpdaterEvent } from "@tauri-apps/api/updater";
const unlisten = await onUpdaterEvent(({ error, status }) => {
console.log('Updater event', error, status);
});

// you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
unlisten();

Since: 1.0.2

参数

名字类型
handler(statusUpdateStatusResult) => void

Returns: Promise<UnlistenFn>

解析为函数以取消侦听事件的承诺。 请注意,如果您的侦听器超出范围(例如,组件已卸载),则需要删除侦听器。


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号