RxJS SchedulerLike
调度程序接口
interface SchedulerLike {
now(): number
schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay?: number, state?: T): Subscription
}
类的实现
Scheduler
方法
现在() |
---|
now(): number 参量没有参数。returns number |
时间表() schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay?: number, state?: T): Subscription
参量 | 类型 |
---|---|
工作 | 类型:(this: SchedulerAction, state?: T) => void |
延迟可选的 | 默认值为undefined 。类型:number 。 |
可选的 | 默认值为undefined 。类型:T 。 |
returns Subscription