angular.js/src/scenario/Future.js

14 lines
246 B
JavaScript
Raw Normal View History

2010-06-29 22:43:02 +00:00
function Future(name, behavior) {
this.name = name;
this.behavior = behavior;
this.fulfilled = false;
this.value = _undefined;
2010-06-29 22:43:02 +00:00
}
Future.prototype = {
2010-07-27 22:43:14 +00:00
fulfill: function(value) {
2010-06-29 22:43:02 +00:00
this.fulfilled = true;
this.value = value;
}
};