Ejemplo n.º 1
0
 GlobalMeta globalMeta(String agentId) throws Exception {
   ConnectedAgent connectedAgent = connectedAgents.get(agentId);
   if (connectedAgent == null) {
     throw new AgentNotConnectedException();
   }
   return connectedAgent.globalMeta();
 }