1. 02 Jun, 2014 1 commit
  2. 06 Feb, 2014 2 commits
  3. 14 Nov, 2013 1 commit
  4. 17 Oct, 2013 1 commit
  5. 09 Oct, 2013 1 commit
  6. 04 Oct, 2013 1 commit
  7. 30 Sep, 2013 3 commits
  8. 27 Sep, 2013 2 commits
  9. 26 Sep, 2013 2 commits
  10. 25 Sep, 2013 1 commit
  11. 23 Sep, 2013 6 commits
    • 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
    • Romain Courteaud's avatar
      Add RSVP#any · be74db04
      Romain Courteaud authored
      be74db04
    • Romain Courteaud's avatar
      Make RSVP#all cancellable. · 34045c37
      Romain Courteaud authored
      Cancel all sub promises as soon as cancelled.
      34045c37
    • Romain Courteaud's avatar
      543306a7
    • Romain Courteaud's avatar
      adding promise#always · c2973910
      Romain Courteaud authored
      c2973910
    • Romain Courteaud's avatar
      Adding promise cancel · f8ce66af
      Romain Courteaud authored
      Cancel allow to manually interrupt a promise execution.
      The promise becomes rejected with a CancellationError.
      
      var xhr, promise;
      promise = RSVP.Promise(
        // Resolver function
        function (done, fail) {
          xhr = new XMLHttpRequest();
          xhr.open("GET", url);
          xhr.send();
        },
        // Canceller function
        function () {
          xhr.abort();
        },
      )
      promise.cancel();
      f8ce66af
  12. 04 Sep, 2013 4 commits
  13. 30 Aug, 2013 1 commit
  14. 29 Aug, 2013 2 commits
  15. 25 Aug, 2013 3 commits
  16. 05 Aug, 2013 1 commit
  17. 02 Aug, 2013 4 commits
  18. 21 Jul, 2013 1 commit
  19. 19 Jul, 2013 3 commits