MCPcopy Index your code
hub / github.com/angular/angular / scheduleMicroTask

Method scheduleMicroTask

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

scheduleTaskMethod · 0.95

Tested by

no test coverage detected