public CommunicationServiceMonitor getCommunicationServiceMonitor(MemberInfo info) throws Exception
{
if (info == null)
{
info = Util.createMemberInfo(channel_.getView().getCreator());
CommunicationServiceMonitor monitor =
new CommunicationServiceMonitor(requestHandler_.getMessageHandlerMonitors(), info);
return monitor;
}
Message message = createMessage(GetCommunicationMonitorHandler.IDENTIFIER);
CommunicationServiceMonitor monitor = (CommunicationServiceMonitor)send(info, message);
return monitor;
}