當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart Zone.bindUnaryCallbackGuarded用法及代碼示例


dart:async 庫中Zone.bindUnaryCallbackGuarded 方法的用法介紹如下。

用法:

void Function(T) bindUnaryCallbackGuarded<T>(
   void callback(
   T argument   
)   
)

注冊提供的 callback 並返回將在此區域中執行的函數。

當函數執行時,錯誤被捕獲並被視為未捕獲的錯誤。

相當於:

ZoneCallback registered = this.registerUnaryCallback(callback);
return (arg) => this.runUnaryGuarded(registered, arg);

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 bindUnaryCallbackGuarded<T> method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。