W3cubDocs

/Dart 2

ZoneSpecification class

This class provides the specification for a forked zone.

When forking a new zone (see Zone.fork) one can override the default behavior of the zone by providing callbacks. These callbacks must be given in an instance of this class.

Handlers have the same signature as the same-named methods on Zone but receive three additional arguments:

  1. the zone the handlers are attached to (the "self" zone).
  2. a ZoneDelegate to the parent zone.
  3. the zone that first received the request (before the request was bubbled up).

Handlers can either stop propagation the request (by simply not calling the parent handler), or forward to the parent zone, potentially modifying the arguments on the way.

Constructors

ZoneSpecification({HandleUncaughtErrorHandler handleUncaughtError, RunHandler<R> run, RunUnaryHandler<R, T> runUnary, RunBinaryHandler<R, T1, T2> runBinary, RegisterCallbackHandler<R> registerCallback, RegisterUnaryCallbackHandler<R, T> registerUnaryCallback, RegisterBinaryCallbackHandler<R, T1, T2> registerBinaryCallback, ErrorCallbackHandler errorCallback, ScheduleMicrotaskHandler scheduleMicrotask, CreateTimerHandler createTimer, CreatePeriodicTimerHandler createPeriodicTimer, PrintHandler print, ForkHandler fork })
const
factory
Creates a specification with the provided handlers.
ZoneSpecification.from(ZoneSpecification other, { HandleUncaughtErrorHandler handleUncaughtError, RunHandler<R> run, RunUnaryHandler<R, T> runUnary, RunBinaryHandler<R, T1, T2> runBinary, RegisterCallbackHandler<R> registerCallback, RegisterUnaryCallbackHandler<R, T> registerUnaryCallback, RegisterBinaryCallbackHandler<R, T1, T2> registerBinaryCallback, ErrorCallbackHandler errorCallback, ScheduleMicrotaskHandler scheduleMicrotask, CreateTimerHandler createTimer, CreatePeriodicTimerHandler createPeriodicTimer, PrintHandler print, ForkHandler fork })
factory
Creates a specification from other with the provided handlers overriding the ones in other.

Properties

createPeriodicTimerCreatePeriodicTimerHandler
read-only
createTimerCreateTimerHandler
read-only
errorCallbackErrorCallbackHandler
read-only
forkForkHandler
read-only
handleUncaughtErrorHandleUncaughtErrorHandler
read-only
printPrintHandler
read-only
registerBinaryCallbackRegisterBinaryCallbackHandler<R, T1, T2>
read-only
registerCallbackRegisterCallbackHandler<R>
read-only
registerUnaryCallbackRegisterUnaryCallbackHandler<R, T>
read-only
runRunHandler<R>
read-only
runBinaryRunBinaryHandler<R, T1, T2>
read-only
runUnaryRunUnaryHandler<R, T>
read-only
scheduleMicrotaskScheduleMicrotaskHandler
read-only
hashCodeint
read-only, inherited
The hash code for this object. [...]
runtimeTypeType
read-only, inherited
A representation of the runtime type of the object.

Methods

noSuchMethod(Invocation invocation) → dynamic
inherited
Invoked when a non-existent method or property is accessed. [...]
toString() → String
inherited
Returns a string representation of this object.

Operators

operator ==(dynamic other) → bool
inherited
The equality operator. [...]

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-async/ZoneSpecification-class.html