Medium Hot vs Cold Publishers
Share a Hot Publisher
Create a Flux emitting "A", "B", "C" and use .share() to make it hot. Subscribe twice. Hot publishers share the execution: the second subscriber may miss items already emitted.
Note: In synchronous mode, share() typically gives both subscribers all items.
Expected
Sub1: A Sub1: B Sub1: C
Main.kt