Package org.nebulaframework.grid.service.event

Examples of org.nebulaframework.grid.service.event.ServiceEvent


   * @param jobId GridJobId
   *
   * @return ServiceEvent
   */
  private static ServiceEvent createJobEndEvent(String jobId) {
    ServiceEvent event = new ServiceEvent();
    event.setMessage(jobId);
    event.addType(ServiceMessageType.JOB_CANCEL);
    event.addType(ServiceMessageType.JOB_END);
    return event;
  }
View Full Code Here


   * @param nodeId GridNode Id
   *
   * @return ServiceEvent
   */
  private static ServiceEvent createNodeLeftEvent(String nodeId) {
    ServiceEvent event = new ServiceEvent();
    event.setMessage(nodeId);
    event.addType(ServiceMessageType.NODE_UNREGISTERED);
    return event;
  }
View Full Code Here

TOP

Related Classes of org.nebulaframework.grid.service.event.ServiceEvent

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.