##// END OF EJS Templates
added TraceSource tests
added TraceSource tests

File last commit:

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