Rx.Observable.prototype.groupByUntil(keySelector, [elementSelector], durationSelector)
Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
Arguments
keySelector
(Function
): A function to extract the key for each element.[elementSelector]
(Function
): A function to map each source element to an element in an observable group.durationSelector
(Function
): A function to signal the expiration of a group.
Returns
(Observable
): A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
Example
var codes = [
{ keyCode: 38}, // up
{ keyCode: 38}, // up
{ keyCode: 40}, // down
{ keyCode: 40}, // down
{ keyCode: 37}, // left
{ keyCode: 39}, // right
{ keyCode: 37}, // left
{ keyCode: 39}, // right
{ keyCode: 66}, // b
{ keyCode: 65} // a
];
var source = Rx.Observable
.for(codes, function (x) { return Rx.Observable.return(x).delay(1000); })
.groupByUntil(
function (x) { return x.keyCode; },
function (x) { return x.keyCode; },
function (x) { return Rx.Observable.timer(2000); });
var subscription = source.subscribe(
function (obs) {
// Print the count
obs.count().subscribe(function (x) { console.log('Count: ' + x); });
},
function (err) {
console.log('Error: ' + err);
},
function () {
console.log('Completed');
});
// => Count: 2
// => Count: 2
// => Count: 1
// => Count: 1
// => Count: 1
// => Count: 1
// => Count: 1
// => Count: 1
// => Completed
Location
File:
Dist:
NPM Packages:
NuGet Packages:
Unit Tests: