/**
* find undelivered messages for this consumer and put
* them in the removeq
*/
for ( int i=0; i<size; i++ ) {
ReadOnlyPacket pkt = (ReadOnlyPacket) (obj[i]);
if ( (pkt != null) && (pkt.getConsumerID() == consumerID) ) {
removeq.addElement(pkt);
}
}
reduceFlowCount = removeq.size();