<div class="gmail_quote"><div>To the extent that this would solve or ameliorate some of the issues, it would be helpful if some application code along the lines suggested by Thomas Tomiczek and others could be provided as part of the quickfixn documentation.  It wouldn't be anyone's real app code, but a bare bones example of the recommended pattern.  Thanks.  (fwiw I think the most recent versions of c# have simplified the syntax for handling separate threads.)    </div>
<div>--Manuel</div><div> </div><div> </div><blockquote style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="gmail_quote">
The way I handle this is:<br>
<br>
<br>
*         Take incoming message<br>
<br>
*         Propagate to my own queue, then handle it from there.<br>
<br>
As a result, I am not even "cracking" messages in the receiving thread, but later in the processing handler. This one runs, as I said, in a  separate thread with an in memory queue ;)<br>
<br>
Yes, it COULD fill up, but that would require a large amount of messages ;)<br>
<br>
Regards<br>
<br>
Thomas<br>
<br>
</blockquote></div>