Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[chemclipse-dev] Question of DynamicChromatogramSelectionUpdateNotifier

In my case of acquisition data, I use ChromatrogramSelection to update the chromatogram and mass spectrum after one scan acquired. The chromatogramSelection#update() method costs almost 100 milliseconds. Tracing the source of chromatogramSelection#update(), it calls org.eclipse.chemclipse.msd.model.notifier.DynamicChromatogramSelectionUpdateNotifier#update() method which uses eventBroker.send() to publish event. According to the javadoc of IEventBroker, the send() method runs in synchronously, and post() method runs in asynchronously. Why is send() not post() used here? How about use post()? 


Best regards,

Trig

Back to the top