We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Okay... so I just coined a term "thunkservable"... which is a function that returns an observable.
Anyhow, should we support something like this?
let secondAction = () => Observable.of({ type: 'ACTIONS_DONE' }); let firstAction = () => Observable.interval(1000).mapTo(secondAction); dispatch(firstAction);
The text was updated successfully, but these errors were encountered:
cc/ @jayphelps
Sorry, something went wrong.
feat(reduxObservable): allow async streams to emit other async actions,
94233f3
fixes redux-observable#8
bd4d2c2
fixes #8
No branches or pull requests
Okay... so I just coined a term "thunkservable"... which is a function that returns an observable.
Anyhow, should we support something like this?
The text was updated successfully, but these errors were encountered: