subscription.add( | |
RxView.clicks(loginButton) | |
.map(click -> new LoginCommand(username.getText(), password.getText(), loginApiClient)) | |
.flatMap(Command::actions) | |
.subscribe(store::dispatch)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment