Examples of HeartbeatStatus


Examples of org.jboss.soa.esb.samples.quickstart.business_ruleservice_cep.status.HeartbeatStatus

    }
  }
 
  public void heartbeat() throws Exception
  {
    StatusSender.getInstance().sendStatus(new HeartbeatStatus(getLocation()));
  }
View Full Code Here

Examples of org.jboss.soa.esb.samples.quickstart.business_ruleservice_cep.status.HeartbeatStatus

  {
    assert status != null;
    Event event;
    if (status instanceof HeartbeatStatus)
    {
      HeartbeatStatus hs = (HeartbeatStatus)status;
      String spokeLocation = hs.getSpokeLocation();
      info("received Heartbeat for " + spokeLocation);
      setSpokeAlive(spokeLocation, true);
      event = new Event(Event.Type.HEARTBEAT, Event.Light.GREEN, spokeLocation);
    }
    else if (status instanceof InventoryStatus)
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.