interface
stable
interface SchedulerAction<T> extends Subscription { schedule(state?: T, delay?: number): Subscription // inherited from index/Subscription static EMPTY: Subscription constructor(unsubscribe?: () => void) closed: [object Object] unsubscribe(): void add(teardown: TeardownLogic): Subscription remove(subscription: Subscription): void }
schedule(state?: T, delay?: number): Subscription
state | Optional. Default is Type: |
delay | Optional. Default is Type: |
Subscription
© 2015–2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors.
Code licensed under an Apache-2.0 License. Documentation licensed under CC BY 4.0.
https://rxjs.dev/api/index/interface/SchedulerAction