This is the last question in https://community.developers.refinitiv.com/questions/62900/ema-java-is-it-possible-to-open-a-stream-in-a-paus.html
To summarize, after sending a paused register request below
long handle = consumer.registerClient(EmaFactory.createReqMsg().pause(true)...);
the following request would only trigger one single RefreshMsg to be sent, no messages after that, it's as though the stream were still paused.
consumer.reissue(EmaFactory.createReqMsg().pause(false), handle);
How do I put the stream back to an unpaused state so that all subsequent messages would be received?