Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change 
notification.

The following page has been changed by jmarino:
http://wiki.apache.org/ws/Tuscany/TuscanyJava/Scenarios/ConversationalSupport/LocalConversationalCallback

------------------------------------------------------------------------------
  public interface MyService {
  
      public void someMethod(String arg); 
+     
+     @EndSession
+ 
+     public void endConversation(); 
+ 
  }
  }}}
  
@@ -43, +48 @@

     
     public void receiveResult(String result) {
         // do something
+        myService.endConversation();
     }
  }
  
@@ -60, +66 @@

      public void someMethod(String arg) {
          callback.receiveResult(result);
      }
+ 
+     public void endConversation(){
+         // do something
+     }
  }
  
  }}}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to