Modified the client side of the invocation services to communicate the

invocation request id to the invocation requester and then also to pass it
along when delivering the invocation response.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@180 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-04 02:54:01 +00:00
parent 7f82de4146
commit db9f2283f3
2 changed files with 21 additions and 11 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestReceiver.java,v 1.2 2001/08/04 02:31:20 mdb Exp $
// $Id: TestReceiver.java,v 1.3 2001/08/04 02:54:01 mdb Exp $
package com.threerings.cocktail.cher.client.test;
@@ -8,9 +8,9 @@ import com.threerings.cocktail.cher.client.InvocationReceiver;
public class TestReceiver implements InvocationReceiver
{
public void handleTestNotification (int one, String two)
public void handleTestNotification (int invid, int one, String two)
{
Log.info("Received tell notification [one=" + one +
", two=" + two + "].");
Log.info("Received tell notification [invid=" + invid +
", one=" + one + ", two=" + two + "].");
}
}