Exemplo n.º 1
0
 /** {@inheritDoc} */
 @Override
 public void dispatchEvent(IEvent event) {
   Set<IConnection> conns = getClientConnections();
   for (IConnection conn : conns) {
     try {
       conn.dispatchEvent(event);
     } catch (RuntimeException e) {
       log.error("Exception during dispatching event: {}", event, e);
     }
   }
 }