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:
@@ -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 + "].");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user