1. 26 Feb, 2020 2 commits
  2. 25 Feb, 2020 12 commits
  3. 17 Dec, 2019 2 commits
  4. 18 May, 2018 3 commits
  5. 05 Jan, 2017 2 commits
  6. 04 Jan, 2017 1 commit
  7. 29 Dec, 2016 1 commit
  8. 14 Dec, 2015 2 commits
  9. 06 Feb, 2014 2 commits
  10. 14 Nov, 2013 1 commit
  11. 17 Oct, 2013 1 commit
  12. 09 Oct, 2013 1 commit
  13. 04 Oct, 2013 1 commit
  14. 30 Sep, 2013 3 commits
  15. 27 Sep, 2013 2 commits
  16. 26 Sep, 2013 2 commits
  17. 25 Sep, 2013 1 commit
  18. 23 Sep, 2013 1 commit
    • Romain Courteaud's avatar
      Add RSVP#Queue · 7086f51f
      Romain Courteaud authored
      Queue allow to control the execution of a list of promises.
      Especially, it can cancel the list of promises.
      
      The queue is fulfilled only when all pushed promises are fulfilled.
      It gets the latest push promise fulfillmentValue as result.
      
          var queue;
          queue = RSVP.Queue();
          queue.push(function () {
            return 1;
          };
          queue.push(function (value) {
            return value + 1;
          };
          queue.then(function (value) {
            assert(value === 2);
          };
      7086f51f