##// END OF EJS Templates
Async operation cancellation proposal...
Async operation cancellation proposal ActivatableMixin

File last commit:

r9:c1c00bfb5487 propose cancellat...
r9:c1c00bfb5487 propose cancellat...
Show More
ICancellation.ts
5 lines | 156 B | video/mp2t | TypeScriptLexer
export interface ICancellation {
throwIfRequested(): void;
isRequested(): boolean;
isSupported(): boolean;
register(cb: () => void): void;
}