Reactor系列(十二)window嵌套

java#reactor#flux#window

Flux嵌套java

視頻解說: https://www.bilibili.com/video/av80458406/

FluxMonoTestCase.javareact

package com.example.reactor;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import reactor.core.publisher.Flux;

@Slf4j
public class FluxMonoTestCase extends BaseTestCase {
    @Test
    public void window(){
        //一維Flux
        Flux<String> stringFlux1 = Flux.just("a","b","c","d","e","f","g","h","i");
        //二維Flux
        Flux<Flux<String>> stringFlux2 = stringFlux1.window(2);
        stringFlux2.count().subscribe(System.out::println);
        //三維Flux
        Flux<Flux<Flux<String>>> stringFlux3 = stringFlux2.window(3);
        stringFlux3.count().subscribe(System.out::println);
    }
}

關注公衆號,堅持天天3分鐘視頻學習
api

相關文章
相關標籤/搜索