Inspectopedia
 
2024.3

Class implements Publisher

Warning
Performance
New
Last modified: 03 December 2024

Reports classes that directly implement the Publisher interface.

Consider using static generators from RxJava, Reactor or Mutiny, for example:

  • Flux.just(), Flux.create(), Flux.generate(), Flux.from()

  • Mono.create(), Mono.from(), Mono.just()

  • Flowable.just(), Flowable.from()

  • Maybe.just(), Maybe.from()

  • Multi.createFrom(), Multi.createBy()

  • Uni.createFrom()