private Counter storeToOutQueueCounter;
public OutGoingQueue() {
if (WSMGParameter.measureMessageRate) {
storeToOutQueueCounter = new Counter();
TimerThread timerThread = new TimerThread(storeToOutQueueCounter, " StoreToOutQueueCounter");
new Thread(timerThread).start();
}
}