HTTP Aborting
Switch
Enable aborting for the service:
crudService.enableAbort(method : UniversalMethod = 'GET', lifetime : number = 2000) : thisDisable aborting for the service:
crudService.disableAbort() : thisAbort
Abort all requests of the service:
crudService.abort() : thisAbort a single request by its urlWithParams for enabled services:
abortService.abort(urlWithParams : string) : thisAbort many requests by their url for enabled services:
abortService.abortMany(url : string) : thisAbort all requests for enabled services:
abortService.abortAll() : thisObserve
Observe a single request by its urlWithParams for enabled services:
abortService.observe(urlWithParams : string) : Observable<[string, Store]>Observe many requests by their url for enabled services:
abortService.observeMany(url : string) : Observable<[string, Store]>Observe all requests for enabled services:
abortService.observeAll() : Observable<[string, Store]>Last updated