| [news.eclipse.rt] Re: Basic questions about the Job class |
1. Can I think of org.eclipse.core.runtime.jobs.Job as Java Runnable?
2. If I have:
MyJob1 a = new MyJob1(); MyJob2 b = new MyJob2(); MyJob3 c = new MyJob3(); a.schedule(); b.schedule(); c.schedule();
Will a, b, and c be running in the same worker thread sequentially?
http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/runtime_jobs.htm
John