bindUnaryCallbackGuarded<T> method

void Function(T) bindUnaryCallbackGuarded<T>(
  1. void callback(
    1. T
    )
)

Registers the provided callback and returns a function that will execute in this zone.

When the function executes, errors are caught and treated as uncaught errors.

Equivalent to:

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

Implementation

void Function(T) bindUnaryCallbackGuarded<T>(void Function(T) callback) {
  var registered = _registerUnaryCallbackZoned(this, callback);
  return (T argument) => runUnaryGuarded(registered, argument);
}