Changeset 16835


Ignore:
Timestamp:
06/14/13 10:55:41 (11 years ago)
Author:
tbretz
Message:
Moved the Write command back to the main thread, to ensure fast output on the console - the file access now has its own queue to decouple disk load and waiting time.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/MessageDim.cc

    r16581 r16835  
    6262void MessageDimTX::UpdateService(const tuple<Time,string,int> &data)
    6363{
    64     MessageImp::Write(get<0>(data), get<1>(data), get<2>(data));
    65 
    6664    setData(get<1>(data));
    6765    setQuality(get<2>(data));
     
    8381int MessageDimTX::Write(const Time &t, const string &txt, int qos)
    8482{
     83    MessageImp::Write(t, txt, qos);
    8584    fMsgQueue.emplace(t, txt, qos);
    8685    return 1;
Note: See TracChangeset for help on using the changeset viewer.