Tauri onUpdaterEvent
onUpdaterEvent(: ):Promise
<UnlistenFn
handler
fn
>
侦听更新程序事件。
例
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 | (status :UpdateStatusResult ) => void |
Returns: Promise
<UnlistenFn
>
解析为函数以取消侦听事件的承诺。 请注意,如果您的侦听器超出范围(例如,组件已卸载),则需要删除侦听器。