Package org.apache.uima.ducc.transport.event

Examples of org.apache.uima.ducc.transport.event.CancelJobDuccEvent


        SubmitJobReplyDuccEvent replyJobEvent = new SubmitJobReplyDuccEvent();
        replyJobEvent.setProperties(submitJobEvent.getProperties());
        exchange.getIn().setBody(replyJobEvent);
      }
      if(obj instanceof CancelJobDuccEvent) {
        CancelJobDuccEvent cancelJobEvent = exchange.getIn().getBody(CancelJobDuccEvent.class);
        CancelJobReplyDuccEvent replyJobEvent = new CancelJobReplyDuccEvent();
        replyJobEvent.setProperties(cancelJobEvent.getProperties());
        exchange.getIn().setBody(replyJobEvent);
      }
      if(obj instanceof SubmitReservationDuccEvent) {
        SubmitReservationDuccEvent submitReservationEvent = exchange.getIn().getBody(SubmitReservationDuccEvent.class);
        SubmitReservationReplyDuccEvent replyReservationEvent = new SubmitReservationReplyDuccEvent();
View Full Code Here


     */
  public boolean execute()
        throws Exception
    {

        CancelJobDuccEvent      cancelJobDuccEvent      = new CancelJobDuccEvent(jobRequestProperties);
        CancelJobReplyDuccEvent cancelJobReplyDuccEvent = null;
        try {
            cancelJobReplyDuccEvent = (CancelJobReplyDuccEvent) dispatcher.dispatchAndWaitForDuccReply(cancelJobDuccEvent);
        } catch (Exception e) {
            message("Job not submitted:", e.getMessage());
View Full Code Here

TOP

Related Classes of org.apache.uima.ducc.transport.event.CancelJobDuccEvent

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.