In C# as there is no EmaFactory how do we clone Msg?
We are using the pub / sub pattern to offload to other threads for processing.
We are currently trying this :
var clonedMsg = new RefreshMsg(msg);
but we still seem to get a dead lock when accessing fields on the clonedMsg on a different thread.