Package org.jboss.soa.esb.samples.quickstart.business_ruleservice_cep.status

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


  {
    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

Related Classes of org.jboss.soa.esb.samples.quickstart.business_ruleservice_cep.status.HeartbeatStatus

Copyright © 2018 www.massapicom. 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.