Author: mszefler
Date: Fri Aug 3 13:07:27 2007
New Revision: 562568
URL: http://svn.apache.org/viewvc?view=rev&rev=562568
Log:
removed the distinction between ASYNC/BLOCKING invocation style.
Modified:
ode/branches/bart/bpel-api/src/main/java/org/apache/ode/bpel/iapi/InvocationStyle.java
Modified:
ode/branches/bart/bpel-api/src/main/java/org/apache/ode/bpel/iapi/InvocationStyle.java
URL:
http://svn.apache.org/viewvc/ode/branches/bart/bpel-api/src/main/java/org/apache/ode/bpel/iapi/InvocationStyle.java?view=diff&rev=562568&r1=562567&r2=562568
==============================================================================
---
ode/branches/bart/bpel-api/src/main/java/org/apache/ode/bpel/iapi/InvocationStyle.java
(original)
+++
ode/branches/bart/bpel-api/src/main/java/org/apache/ode/bpel/iapi/InvocationStyle.java
Fri Aug 3 13:07:27 2007
@@ -6,18 +6,6 @@
* @author Maciej Szefler
*/
public enum InvocationStyle {
- /**
- * The very ordinary blocking IO style --- the IL/engine will block until
the operation is complete, or until
- * a timeout is reached.
- */
- BLOCKING,
-
- /**
- * Asynchrnous style -- the IL/engine will "queue" the invocation, and
call-back asynchrnously when the response
- * is available.
- */
- ASYNC,
-
/**
* Reliable style -- the IL/engine will queue the invocation using the
current transaction. The response will be
* delivered when available using a separate transaction.
@@ -29,5 +17,10 @@
* Transacted style -- the IL/engine will enroll the operation with the
current transaction. The IL/engine will
* block until the operation completes.
*/
- TRANSACTED
+ TRANSACTED,
+
+ /**
+ * Unreliable style -- the "default"
+ */
+ UNRELIABLE
}