How to use the right-angled.OperationStatus.Cancelled function in right-angled

To help you get started, we’ve selected a few right-angled examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github eastbanctechru / right-angled / projects / right-angled-demo / src / app / list-controls / async-actions / async-actions.component.ts View on Github external
public cancelRequest(): void {
        this.subscriber.next({
            items: [],
            status: OperationStatus.Cancelled,
            totalCount: 0
        });
        this.subscriber.complete();
        this.subscriber = null;
    }