Skip to content
New issue

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

Holding onto first event and replaying it on each later event #5

Open
tobytraylor opened this issue Nov 1, 2018 · 3 comments
Open

Comments

@tobytraylor
Copy link

The built_redux_rx plugin is forever replaying the first event encountered each time any other event is fired. This line of code needs to be changed from:

_epics.stream
              .transform<dynamic>(
                  SwitchMapStreamTransformer<Epic<V, B, A>, dynamic>(
                      (epic) => epic(Observable(_actions.stream), mwApi)))
              .listen((dynamic _) => next(action));

to

_epics.stream
              .transform<dynamic>(
                  SwitchMapStreamTransformer<Epic<V, B, A>, dynamic>(
                      (epic) => epic(Observable(_actions.stream), mwApi)))
              .listen((dynamic _) => null);
@tobytraylor
Copy link
Author

Hello. Any word on this one?

@tobytraylor
Copy link
Author

Any chance to fix this yet?

@tobytraylor
Copy link
Author

Crap. Is this project dead?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant