HTTP Aborting
Enable aborting for the service:
crudService.enableAbort(method : UniversalMethod = 'GET', lifetime : number = 2000) : this
Disable aborting for the service:
crudService.disableAbort() : this
Abort all requests of the service:
crudService.abort() : this
Abort a single request by its
urlWithParams
for enabled services:abortService.abort(urlWithParams : string) : this
Abort many requests by their
url
for enabled services:abortService.abortMany(url : string) : this
Abort all requests for enabled services:
abortService.abortAll() : this
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 modified 1yr ago