##// END OF EJS Templates
removed obsolete code
removed obsolete code

File last commit:

r9:c1c00bfb5487 propose cancellat...
r12:80e4b5709788 propose cancellat...
Show More
EmptyCancellation.ts
19 lines | 396 B | video/mp2t | TypeScriptLexer
/ src / ts / EmptyCancellation.ts
import { ICancellation } from "./ICancellation";
export class EmptyCancellation implements ICancellation {
isSupported(): boolean {
return false;
}
throwIfRequested(): void {
}
isRequested(): boolean {
return false;
}
register(_cb: () => void): void {
}
static readonly default : EmptyCancellation = new EmptyCancellation();
}