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

Method scheduleMacroTask

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

Source from the content-addressed store, hash-verified

1032 }
1033
1034 scheduleMacroTask(
1035 source: string,
1036 callback: Function,
1037 data?: TaskData,
1038 customSchedule?: (task: Task) => void,
1039 customCancel?: (task: Task) => void,
1040 ): MacroTask {
1041 return this.scheduleTask(
1042 new ZoneTask(macroTask, source, callback, data, customSchedule, customCancel),
1043 );
1044 }
1045
1046 scheduleEventTask(
1047 source: string,

Callers

nothing calls this directly

Calls 1

scheduleTaskMethod · 0.95

Tested by

no test coverage detected