Regenerated marshallers with new response-tracking code.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3793 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-12-21 02:12:57 +00:00
parent 4cb18bd5ab
commit 852620bea4
8 changed files with 14 additions and 0 deletions
@@ -47,6 +47,7 @@ public class AdminMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void gotConfigInfo (String[] arg1, int[] arg2)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, GOT_CONFIG_INFO,
new Object[] { arg1, arg2 }));
@@ -49,6 +49,7 @@ public class ChatMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void tellSucceeded (long arg1, String arg2)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, TELL_SUCCEEDED,
new Object[] { new Long(arg1), arg2 }));
@@ -48,6 +48,7 @@ public class LocationMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceeded (PlaceConfig arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED,
new Object[] { arg1 }));
@@ -48,6 +48,7 @@ public class LobbyMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void gotCategories (String[] arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, GOT_CATEGORIES,
new Object[] { arg1 }));
@@ -79,6 +80,7 @@ public class LobbyMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void gotLobbies (List arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, GOT_LOBBIES,
new Object[] { arg1 }));
@@ -51,6 +51,7 @@ public class ParlorMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void inviteReceived (int arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, INVITE_RECEIVED,
new Object[] { new Integer(arg1) }));
@@ -82,6 +83,7 @@ public class ParlorMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void tableCreated (int arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, TABLE_CREATED,
new Object[] { new Integer(arg1) }));
@@ -47,6 +47,7 @@ public class TimeBaseMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void gotTimeOid (int arg1)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, GOT_TIME_OID,
new Object[] { new Integer(arg1) }));
@@ -50,6 +50,7 @@ public class SceneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceeded (int arg1, PlaceConfig arg2)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED,
new Object[] { new Integer(arg1), arg2 }));
@@ -62,6 +63,7 @@ public class SceneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceededWithScene (int arg1, PlaceConfig arg2, SceneModel arg3)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED_WITH_SCENE,
new Object[] { new Integer(arg1), arg2, arg3 }));
@@ -74,6 +76,7 @@ public class SceneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceededWithUpdates (int arg1, PlaceConfig arg2, SceneUpdate[] arg3)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED_WITH_UPDATES,
new Object[] { new Integer(arg1), arg2, arg3 }));
@@ -51,6 +51,7 @@ public class ZoneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceeded (int arg1, PlaceConfig arg2, ZoneSummary arg3)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED,
new Object[] { new Integer(arg1), arg2, arg3 }));
@@ -63,6 +64,7 @@ public class ZoneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceededWithScene (int arg1, PlaceConfig arg2, ZoneSummary arg3, SceneModel arg4)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED_WITH_SCENE,
new Object[] { new Integer(arg1), arg2, arg3, arg4 }));
@@ -75,6 +77,7 @@ public class ZoneMarshaller extends InvocationMarshaller
// documentation inherited from interface
public void moveSucceededWithUpdates (int arg1, PlaceConfig arg2, ZoneSummary arg3, SceneUpdate[] arg4)
{
_invId = null;
omgr.postEvent(new InvocationResponseEvent(
callerOid, requestId, MOVE_SUCCEEDED_WITH_UPDATES,
new Object[] { new Integer(arg1), arg2, arg3, arg4 }));