Using both publishOn and subscribeOn on a flux results in nothing happening

后端 未结 1 1070
走了就别回头了
走了就别回头了 2021-02-06 03:02

Whenever i use both subscribeOn and publishOn nothing is printed. If I use only one it will print. If I use subscribeOn(Schedulers.immediate()) or elastic it works. Any

1条回答
  •  时光说笑
    2021-02-06 03:13

    subscribeOn rather influence where the subscription occurs. That is, the initial event that triggers the source to emit elements. The Subscriber 's onNext hook on the other hand is influenced by the closest publishOn up in the chain (much like your map).

    But EmitterProcessor, like most Processors, is more advanced and can do some work stealing. I'm unsure why you don't get anything printed in your case (your sample converted to Java works on my machine), but I bet it has something to do with that Processor.

    This code would better demonstrate subscribeOn vs publishOn:

    Flux.just("a", "b", "c") //this is where subscription triggers data production
            //this is influenced by subscribeOn
            .doOnNext(v -> System.out.println("before publishOn: " + Thread.currentThread().getName()))
            .publishOn(Schedulers.elastic())
            //the rest is influenced by publishOn
            .doOnNext(v -> System.out.println("after publishOn: " + Thread.currentThread().getName()))
            .subscribeOn(Schedulers.parallel())
            .subscribe(v -> System.out.println("received " + v + " on " + Thread.currentThread().getName()));
        Thread.sleep(5000);
    

    This prints out:

    before publishOn: parallel-1
    before publishOn: parallel-1
    before publishOn: parallel-1
    after publishOn: elastic-2
    received a on elastic-2
    after publishOn: elastic-2
    received b on elastic-2
    after publishOn: elastic-2
    received c on elastic-2
    

    0 讨论(0)
提交回复
热议问题