Rx.Observable.prototype.startWith([scheduler] ...args)
Prepends a sequence of values to an observable sequence with an optional scheduler and an argument list of values to prepend.
参数
[scheduler]
(Scheduler
): Scheduler to execute the function.args
(arguments): Values to prepend to the observable sequence.
返回值
(Observable
): The source sequence prepended with the specified values.