comparison Framework/Loaders/LoaderStateMachine.cpp @ 1075:81b29bc7c3d4 broker

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Oct 2019 14:39:51 +0200
parents 9d42f89b8c3c
children 8e3763d1736a
comparison
equal deleted inserted replaced
1074:229ea1389845 1075:81b29bc7c3d4
95 LOG(TRACE) << " LoaderStateMachine(" << std::hex << this << std::dec << 95 LOG(TRACE) << " LoaderStateMachine(" << std::hex << this << std::dec <<
96 ")::Step(): activeCommands_ (" << activeCommands_ << 96 ")::Step(): activeCommands_ (" << activeCommands_ <<
97 ") < simultaneousDownloads_ (" << simultaneousDownloads_ << 97 ") < simultaneousDownloads_ (" << simultaneousDownloads_ <<
98 ") --> will Schedule command addr " << std::hex << nextCommand << std::dec; 98 ") --> will Schedule command addr " << std::hex << nextCommand << std::dec;
99 99
100 oracle_.Schedule(*this, nextCommand); 100 boost::shared_ptr<IObserver> observer(GetSharedObserver());
101 oracle_.Schedule(observer, nextCommand);
101 pendingCommands_.pop_front(); 102 pendingCommands_.pop_front();
102 103
103 activeCommands_++; 104 activeCommands_++;
104 } 105 }
105 else 106 else