Guest User

Untitled

a guest
Jun 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @Effect()
  2. loadData$ = this.actions$.ofType(LOAD_DATA)
  3. .pipe(switchMap(() => {
  4. return this.apiService.getData().pipe(
  5. map(data => new LOAD_DATA_SUCCESS(data)),
  6. catchError(error => of(new LOAD_DATA_FAILURE(error)))
  7. );
  8. });
Add Comment
Please, Sign In to add comment