add a note about sync'ing timeouts in SignalRelay's to actual data availability

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=712191
This commit is contained in:
Aaron J. Seigo 2007-09-13 20:41:01 +00:00
parent 6ffbc459ad
commit c24d23c1f9

View File

@ -100,6 +100,18 @@ public:
if (m_queued) {
emit updated(dc->objectName(), d->data);
m_queued = false;
//TODO: should we re-align our timer at this point, to avoid
// constant queueing due to more-or-less constant time
// async update time? this might make sense for
// staggered accesses to the same source by multiple
// visualizations causing a minimumUpdateInterval violation.
// it may not make sense for purely async-and-takes-a-while
// type operations (e.g. network fetching).
// we need more real world data before making such a change
// change
//
// killTimer(m_timerId);
// m_timerId = startTime(m_interval);
}
}