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:
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.