What is the most suitable way to convert a Multi to Uni on completion? So far, I have the following working solutions:
multi.collect().asList().replaceWithVoid()
It just feels a bit odd to collect the items and to replace the list when I'm only interested in receiving an item upon completion. Am I missing a better solution?