项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

16 line
629 B

  1. "use strict";
  2. var __extends = (this && this.__extends) || function (d, b) {
  3. for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
  4. function __() { this.constructor = d; }
  5. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  6. };
  7. var AsyncScheduler_1 = require('./AsyncScheduler');
  8. var QueueScheduler = (function (_super) {
  9. __extends(QueueScheduler, _super);
  10. function QueueScheduler() {
  11. _super.apply(this, arguments);
  12. }
  13. return QueueScheduler;
  14. }(AsyncScheduler_1.AsyncScheduler));
  15. exports.QueueScheduler = QueueScheduler;
  16. //# sourceMappingURL=QueueScheduler.js.map