e54a4d41f4
method invocation services and converted everything to the new style. Could this be my biggest checkin ever? git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1642 542714f4-19e9-0310-aa3c-eee0fc999fb1
22 lines
698 B
Java
22 lines
698 B
Java
//
|
|
// $Id: LocationReceiver.java,v 1.1 2002/08/14 19:07:49 mdb Exp $
|
|
|
|
package com.threerings.crowd.client;
|
|
|
|
import com.threerings.presents.client.InvocationReceiver;
|
|
|
|
/**
|
|
* Defines, for the location services, a set of notifications delivered
|
|
* asynchronously by the server to the client.
|
|
*/
|
|
public interface LocationReceiver extends InvocationReceiver
|
|
{
|
|
/**
|
|
* Used to communicate a required move notification to the client. The
|
|
* server will have removed the client from their existing location
|
|
* and the client is then responsible for generating a {@link
|
|
* LocationService#moveTo} request to move to the new location.
|
|
*/
|
|
public void forcedMove (int placeId);
|
|
}
|