Examples of broadcast()


Examples of org.rioproject.monitor.service.channel.ServiceChannel.broadcast()

                                                                    svcElement.getOperationalStringName(),
                                                                    svcElement,
                                                                    instance);
            processEvent(event);
            ServiceChannel channel = ServiceChannel.getInstance();
            channel.broadcast(new ServiceChannelEvent(this, svcElement, ServiceChannelEvent.Type.PROVISIONED));
        }
    }

    /**
     * Handle internal service notifications for associated service transitions
View Full Code Here

Examples of org.seattlegamer.spacegame.core.Bus.broadcast()

    Collection<State> states = new LinkedList<State>();
    states.add(gameState());
    states.add(menuState());
    StateManager stateManager = new StateManager(states);
    bus.register(stateManager, null);
    bus.broadcast(new StateChange(MenuState.class));
    return stateManager;

  }
 
  public @Bean GameState gameState() {
View Full Code Here

Examples of org.seattlegamer.spacegame.core.BusImpl.broadcast()

 
  @Test
  public void unsubscribedMessagesBroadcastNowhereSilently() {
   
    Bus bus = new BusImpl();
    bus.broadcast("buzz");
   
  }
 
  @Test
  public void registrationsTakeIntoAccountSuperClass() {
View Full Code Here

Examples of org.springframework.messaging.simp.annotation.SendToUser.broadcast()

    MessageHeaders headers = message.getHeaders();
    String sessionId = SimpMessageHeaderAccessor.getSessionId(headers);

    SendToUser sendToUser = returnType.getMethodAnnotation(SendToUser.class);
    if (sendToUser != null) {
      boolean broadcast = sendToUser.broadcast();
      String user = getUserName(message, headers);
      if (user == null) {
        if (sessionId == null) {
          throw new MissingSessionUserException(message);
        }
View Full Code Here

Examples of org.uberfire.commons.cluster.ClusterService.broadcast()

                                }
                            }

                            if ( clusterService != null ) {
                                //TODO {porcelli} hack, that should be addressed in future
                                clusterService.broadcast( DEFAULT_IO_SERVICE_NAME,
                                                          new MessageType() {

                                                              @Override
                                                              public String toString() {
                                                                  return "SYNC_FS";
View Full Code Here

Examples of ptolemy.actor.IOPort.broadcast()

                                    _debug(getFullName() + " port: "
                                            + destination.getName()
                                            + " broadcast Clear!");
                                }
                            } else {
                                destination.broadcast(token);

                                if (_debugging) {
                                    _debug(getFullName() + " port: "
                                            + destination.getName()
                                            + " broadcast token: " + token);
View Full Code Here

Examples of railo.runtime.type.scope.Cluster.broadcast()

            Caster.toLongValue(entry.get(KeyConstants._time))
        )
      );
    }

    cluster.broadcast();
  }
 
 
  private void doGetCluster() throws PageException {
    pageContext.setVariable(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.