jacek-marchwicki/JavaWebsocketClient

A lot of websocket connection

Opened this issue · 1 comments

kizup commented

In your implementation on each subscribe creates a new websocket connection. Do you fix this?

This is expected behavior. If you don't want to have multiple connections you should use .replay(1).refCount() or just .replay().refCount() It depends on your needs.