View Javadoc
1 package org.smartcomps.twister.engine; 2 3 import org.dom4j.Document; 4 5 /*** 6 * Main interface of the Twister Process Engine. 7 */ 8 public interface TwisterEngine { 9 10 public static final int ACKNOWLEDGED = 0; 11 public static final int SERVER_FAILURE = 1; 12 public static final int CONFLICTING_RECEIVE_FAILURE = 2; 13 public static final int CORRELATION_VIOLATION = 3; 14 15 public int acknowledge(String partnerLink, String portType, String operation, org.dom4j.Document message); 16 17 }

This page was automatically generated by Maven