What is a zone context?

Execution Context is an abstract concept that holds information about the environment within the current code being executed. A zone provides an execution context that persists across asynchronous operations is called as zone context. For example, the zone context will be same in both outside and inside setTimeout callback function,

zone.run(() => {
// outside zone
expect(zoneThis).toBe(zone);
setTimeout(function () {
// the same outside zone exist here
expect(zoneThis).toBe(zone);
});
});

The current zone is retrieved through Zone.current.


May 24, 2022
204