RxJS SchedulerLike
2020-10-13 10:06 更新
调度程序接口
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
以上内容是否对您有帮助:

免费 AI IDE


更多建议: