Hello,
What is the proper pattern for using connectPubSub() with multiple listeners and multiple channels?
For example, if I have a use case that would like to subscribe to two channels, should we:
1. Create a single connection by calling connectPubSub() once, and add logic to direct each message received to the proper listener.
2. Create two connections by calling connectPubSub() twice, where each connection will have their own single distinct listener.