You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
682 B
17 lines
682 B
2 years ago
|
import { AsyncAction } from './AsyncAction';
|
||
|
import { Subscription } from '../Subscription';
|
||
|
import { QueueScheduler } from './QueueScheduler';
|
||
|
/**
|
||
|
* We need this JSDoc comment for affecting ESDoc.
|
||
|
* @ignore
|
||
|
* @extends {Ignored}
|
||
|
*/
|
||
|
export declare class QueueAction<T> extends AsyncAction<T> {
|
||
|
protected scheduler: QueueScheduler;
|
||
|
protected work: (this: QueueAction<T>, state?: T) => void;
|
||
|
constructor(scheduler: QueueScheduler, work: (this: QueueAction<T>, state?: T) => void);
|
||
|
schedule(state?: T, delay?: number): Subscription;
|
||
|
execute(state: T, delay: number): any;
|
||
|
protected requestAsyncId(scheduler: QueueScheduler, id?: any, delay?: number): any;
|
||
|
}
|