public int cosSubscribeAll(int subGroupKeyId) throws CosDpServerException
{
SubscriptionGroup subgrp = subscriptions_.get(subGroupKeyId);
if (subgrp == null)
{
throw new CosDpServerException(
CosDpServerExceptionCodeEnum.ExceptionDpServerGeneric,
"cosSubscribeAll: invalid subscription group id");
}
// pass it to the subscription grou
return subgrp.subscribeAll();