Просмотр исходного кода

Remove unused startProcessing method.

tags/before_postback_reorg
ymlam 6 лет назад
Родитель
Сommit
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


Загрузка…
Отмена
Сохранить