Last active
July 27, 2019 16:35
-
-
Save arturovt/09ad2990ca24a86f0cfe848fcbd63475 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Zone { | |
public scheduleMacroTask(source, callback, data, customSchedule, customCancel) { | |
return this.scheduleTask( | |
new ZoneTask(macroTask, source, callback, data, customSchedule, customCancel) | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment