Reative

    [ tech.io ] Reactive Programming with Reactor 3 답지

    tech.io 2. Flux instances 2-1 Return an empty Flux Flux emptyFlux() { return Flux.empty(); } 2-2 Return a Flux that contains 2 values "foo" and "bar" without using an array or a collection Flux fooBarFluxFromValues() { return Flux.just("foo", "bar"); } 2-3 Create a Flux from a List that contains 2 values "foo" and "bar" Flux fooBarFluxFromList() { return Flux.fromIterable(Arrays.asList(new Strin..