bindUnaryCallback abstract method

ZoneUnaryCallback<R, T> bindUnaryCallback<R, T>(R action(T argument), { bool runGuarded: true })

Equivalent to:

 ZoneCallback registered = this.registerUnaryCallback(action);
 if (runGuarded) return (arg) => this.runUnaryGuarded(registered, arg);
 return (arg) => thin.runUnary(registered, arg);

Source

ZoneUnaryCallback<R, T> bindUnaryCallback<R, T>(R action(T argument),
    {bool runGuarded: true});

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-async/Zone/bindUnaryCallback.html