lhotari opened a new issue, #22: URL: https://github.com/apache/pulsar-client-reactive/issues/22
Currently there's a challenge in using `Flux<MessageId> sendMany(Publisher<MessageSpec<T>> messageSpecs);` since there's no way to associate the input MessageSpec instance to the MessageId that it produces. One possibility would be that it's possible to pass a key with the message spec and this key would be returned together with the MessageId. Perhaps adding an additional method to support the key would be useful: `<K> Flux<Tuple2<K, MessageId>> sendMany(Publisher<Tuple<K, MessageSpec<T>>> messageSpecs);` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
