Add RegistrationService to allow cpp clients to register receivers even though they're not using DObject
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6268 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.threerings.presents.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.InvocationReceiver;
|
||||
import com.threerings.presents.client.RegistrationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link RegistrationService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.cpp.GenCPPServiceTask"},
|
||||
comments="Derived from RegistrationService.java.")
|
||||
public interface RegistrationProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
* Handles a {@link RegistrationService#registerReceiver} request.
|
||||
*/
|
||||
void registerReceiver (ClientObject caller, InvocationReceiver.Registration arg1);
|
||||
}
|
||||
Reference in New Issue
Block a user