Files
narya/tests/src/java/com/threerings/presents/client/TestReceiver.java
T
Michael Bayne 41488822dc Modified invocation request procedure to provide a reference to the client
object that initiated the request. Implemented the invocation notification
side of things.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@76 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-07-19 19:18:07 +00:00

17 lines
453 B
Java

//
// $Id: TestReceiver.java,v 1.1 2001/07/19 19:18:06 mdb Exp $
package com.threerings.cocktail.cher.client.test;
import com.threerings.cocktail.cher.Log;
import com.threerings.cocktail.cher.client.InvocationReceiver;
public class TestReceiver extends InvocationReceiver
{
public void handleTestNotification (int one, String two)
{
Log.info("Received tell notification [one=" + one +
", two=" + two + "].");
}
}