17. Reactive Programming with Java Flow
Activity 1: Let NumberProcessor Format Values as Integers
Solution
- Change the processors published item type to Integer. Make the necessary changes in the implementation to match the new type:
Activity1.java
53Â Â Â Â Â Â Â Â Â Â Â Â Â @Override 54Â Â Â Â Â Â Â Â Â Â Â Â Â public void onComplete() { 55Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â System.out.println("onComplete()"); 56Â Â Â Â Â Â Â Â Â Â Â Â Â } 57Â Â Â Â Â Â Â Â Â }); 58Â Â Â Â Â } 59 60 61Â Â Â Â Â private static String[] getStrings() { 62Â Â Â Â Â Â Â Â Â String filePath = "res/numbers.txt"; 63Â Â Â Â Â Â ...