skip method

  1. @override
Observable<CommandResult<TRESULT>> skip (int count)

Skips the first count data events from this stream.

The returned stream is a broadcast stream if this stream is. For a broadcast stream, the events are only counted from the time the returned stream is listened to.

Implementation

@override
Observable<T> skip(int count) => new Observable<T>(stream.skip(count));