Overview
Waits for the source to complete, then emits the last N values from the source.takeLast results in an observable that will hold up to count values in memory until the source completes. It then pushes all values in memory to the consumer in the order they were received.Type Signature
Parameters
The maximum number of values to emit from the end of the sequence.If
count <= 0, returns an empty Observable.Returns
MonoTypeOperatorFunction<T> - A function that returns an Observable that emits at most the last count values emitted by the source Observable.
