File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/ch/petikoch/examples/mvvm_rxjava/example6 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ public void connectTo(final Example_6_Model model) {
9292 finishedIndicator -> vm2v_resultat2 .onNext ("Email sent to " + nameFirstname .getName () + " " + nameFirstname .getFirstname ()));
9393 v2vm_cancelButtonEvents .first ().takeUntil (sendEmailResult .toObservable ()).subscribe (actionEvent -> vm2v_resultat2 .onNext ("Aborted" ));
9494
95- final Single <FinishedIndicator > beidesFertig =
95+ final Single <FinishedIndicator > bothFinished =
9696 Single .zip (createAccountResult ,
9797 sendEmailResult ,
9898 (finishedIndicator , finishedIndicator2 ) -> FinishedIndicator .INSTANCE
9999 );
100- Single .merge (beidesFertig , v2vm_cancelButtonEvents .first ().toSingle ())
100+ Single .merge (bothFinished , v2vm_cancelButtonEvents .first ().toSingle ())
101101 .toBlocking ()
102102 .first ();
103103
You can’t perform that action at this time.
0 commit comments