MCPcopy Create free account
hub / github.com/angular/angular / scheduleMicroTask

Method scheduleMicroTask

packages/zone.js/lib/zone-impl.ts:1018–1027  ·  view source on GitHub ↗
(
      source: string,
      callback: Function,
      data?: TaskData,
      customSchedule?: (task: Task) => void,
    )

Source from the content-addressed store, hash-verified

1016 }
1017
1018 scheduleMicroTask(
1019 source: string,
1020 callback: Function,
1021 data?: TaskData,
1022 customSchedule?: (task: Task) => void,
1023 ): MicroTask {
1024 return this.scheduleTask(
1025 new ZoneTask(microTask, source, callback, data, customSchedule, undefined),
1026 );
1027 }
1028
1029 scheduleMacroTask(
1030 source: string,

Callers

nothing calls this directly

Calls 1

scheduleTaskMethod · 0.95

Tested by

no test coverage detected