瀏覽代碼

Remove unused startProcessing method.

tags/before_postback_reorg
ymlam 6 年之前
父節點
當前提交
2c7ba134d8
共有 1 個文件被更改,包括 0 次插入24 次删除
  1. +0
    -24
      src/main/java/altk/comm/engine/Broadcast.java

+ 0
- 24
src/main/java/altk/comm/engine/Broadcast.java 查看文件

@@ -1015,30 +1015,6 @@ public abstract class Broadcast
// Do nothing in base class
}
public void startProcessing() throws BroadcastException
{
effectiveJobCount = recipientList.size();
// Create service thread pool to dispatch jobs
myLogger.debug("At creating service threads, serviceThreadPoolSize = " + serviceThreadPoolSize);
for (int i = 0; i < serviceThreadPoolSize; i++)
{
String threadName = broadcastId + "_service_thread_" + i;
Service serviceThread = new Service(threadName);
serviceThreadPool.add(serviceThread);
}

initServiceThreadContexts();
setState(BroadcastState.RUNNING);

// Start the dispatcher threads
for (Service thread : serviceThreadPool)
{
thread.start();
}
}
/**
* Derived class may set up environment before starting Service threads.
* @param serviceThreadNames


Loading…
取消
儲存