An open API service indexing awesome lists of open source software.

https://github.com/kryptand/delayed-http-operations


https://github.com/kryptand/delayed-http-operations

angular angular8 delay delayed-save

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          


_ ______ ____________ ____
|_/ |__/ \_/ |__]| |__||\ || \
| \_| \ | | | | || \||__/

What problem does Delayed Http Operations solve?

This package can be used to delay all your HTTP Requests up to a certain point without the hassle of locally providing multiple states.

To use it add the DelayedHttpOperationsService to the providers array in the scope of your liking.
(It is recommended to add it to AppModule though)


[...]
import { DelayedHttpOperationsService } from 'projects/delayed-http-operations/src/lib/services/delayed-http-operations.service';

@NgModule({
[...]
providers: [DelayedHttpOperationsService],
[...]
})
export class AppModule {}

For an example look into https://github.com/Kryptand/delayed-http-operations