use of org.apache.storm.utils.JCQueue in project storm by apache.
the class ExecutorTransfer method flushLocal.
private void flushLocal() throws InterruptedException {
for (int i = 0; i < queuesToFlush.length(); i++) {
JCQueue q = queuesToFlush.get(i);
if (q != null) {
q.flush();
queuesToFlush.set(i, null);
}
}
}
Aggregations