Package org.uengine.kernel

Source Code of org.uengine.kernel.ReceiveAndReplyActivity

package org.uengine.kernel;

import org.uengine.kernel.GlobalContext;
import org.uengine.kernel.ReceiveActivity;


/**
* @author Jinyoung Jang
*/

public class ReceiveAndReplyActivity extends ComplexActivity{
  private static final long serialVersionUID = org.uengine.kernel.GlobalContext.SERIALIZATION_UID;

  public ReceiveAndReplyActivity(){
    super();
    setName("receive~reply");
    setChildActivities(new Activity[]{
      new ReceiveActivity(),
      new WebServiceActivity()
    });
  }
 
/*  protected void queueActivity(final Activity act, final ActivityInstance instance) throws Exception{
    act.executeActivity(instance);   
  } 

  ProcessVariable output;
    public ProcessVariable getOutput() {
      return output;
    }
    public void setOutput(ProcessVariable variable) {
      output = variable;
    }
*/
}

 
TOP

Related Classes of org.uengine.kernel.ReceiveAndReplyActivity

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.