문제

In QuickFIX C++, is the logging to a file blocking or it is done in a separate thread?

If it is blocking, is there a configuration parameter to make it async?

도움이 되었습니까?

해결책

The QuickFIX FileLog is not asynchronous and there's no configuration setting to make it so. However, it's not difficult to implement your own Log implementation with that behavior (possibly integrating an existing logging framework that does support asynchronous logging). Look at the existing Log implementations to see how to do this.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top