GraphSourceRunnable runnable = sourceRunnables.get(i);
String threadName = "esper." + dataFlowName + "-" + i;
Thread thread = new Thread(runnable, threadName);
thread.setContextClassLoader(Thread.currentThread().getContextClassLoader());
thread.setDaemon(true);
runnable.addCompletionListener(new CompletionListener() {
public void completed() {
int remaining = countdown.decrementAndGet();
if (remaining == 0) {
EPDataFlowInstanceImpl.this.completed();
}