Removed some code that only needs to be on the server-side.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@70 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-09-07 21:38:02 +00:00
parent f2dc1b2269
commit cbdc73381c
3 changed files with 0 additions and 43 deletions
@@ -10,20 +10,11 @@ import com.threerings.parlor.client.ParlorService_InviteListener;
public class ParlorMarshaller_InviteMarshaller
extends InvocationMarshaller_ListenerMarshaller
implements ParlorService_InviteListener
{
/** The method id used to dispatch {@link #inviteReceived}
* responses. */
public static const INVITE_RECEIVED :int = 1;
// documentation inherited from interface
public function inviteReceived (arg1 :int) :void
{
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, INVITE_RECEIVED,
[ Integer.valueOf(arg1) ]));
}
// documentation inherited
override public function dispatchResponse (methodId :int, args :Array) :void
{
@@ -10,20 +10,11 @@ import com.threerings.parlor.client.ParlorService_TableListener;
public class ParlorMarshaller_TableMarshaller
extends InvocationMarshaller_ListenerMarshaller
implements ParlorService_TableListener
{
/** The method id used to dispatch {@link #tableCreated}
* responses. */
public static const TABLE_CREATED :int = 1;
// documentation inherited from interface
public function tableCreated (arg1 :int) :void
{
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, TABLE_CREATED,
[ Integer.valueOf(arg1) ]));
}
// documentation inherited
override public function dispatchResponse (methodId :int, args :Array) :void
{