41488822dc
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
17 lines
453 B
Java
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 + "].");
|
|
}
|
|
}
|