'Is there a style guide/convention on using Project Reactor?

I am just trying to find examples of using Project Reactor hoping to see somewhat of a convention to use for the method and variable names for Flux/Mono and their respective generators.

Going through their examples in Project Reactor reference they don't really have a consistent pattern to help identify what the type is

Unlike RxJS which had the $ suffix for observables.

For my own code I just chose to end monos with Mono and flux with Flux, then for mono or flux providers/generators I use provideXYZ() (no suffix) and mappers I just do with mapXYZtoABC(). However, I am wondering if there's a definitive style guide.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source