From da11bd0ea04e12ca6f1dbf5ebef02df6d9a115a5 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sun, 8 Jun 2008 12:58:27 +0000 Subject: [PATCH] Regenerated services. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5161 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/admin/data/AdminMarshaller.java | 3 ++- src/java/com/threerings/bureau/data/BureauMarshaller.java | 1 + src/java/com/threerings/crowd/chat/data/ChatMarshaller.java | 3 ++- src/java/com/threerings/crowd/chat/data/SpeakMarshaller.java | 1 + src/java/com/threerings/crowd/data/BodyMarshaller.java | 1 + src/java/com/threerings/crowd/data/LocationMarshaller.java | 3 ++- .../com/threerings/crowd/peer/data/CrowdPeerMarshaller.java | 1 + src/java/com/threerings/presents/data/TimeBaseMarshaller.java | 3 ++- src/java/com/threerings/presents/peer/data/PeerMarshaller.java | 1 + 9 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/java/com/threerings/admin/data/AdminMarshaller.java b/src/java/com/threerings/admin/data/AdminMarshaller.java index ae72c4269..68aa7a4c4 100644 --- a/src/java/com/threerings/admin/data/AdminMarshaller.java +++ b/src/java/com/threerings/admin/data/AdminMarshaller.java @@ -25,6 +25,7 @@ import com.threerings.admin.client.AdminService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.dobj.InvocationResponseEvent; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link AdminService} interface @@ -52,7 +53,7 @@ public class AdminMarshaller extends InvocationMarshaller _invId = null; omgr.postEvent(new InvocationResponseEvent( callerOid, requestId, GOT_CONFIG_INFO, - new Object[] { arg1, arg2 })); + new Object[] { arg1, arg2 }, transport)); } @Override // from InvocationMarshaller diff --git a/src/java/com/threerings/bureau/data/BureauMarshaller.java b/src/java/com/threerings/bureau/data/BureauMarshaller.java index 1b8c4e8a8..d7cda856a 100644 --- a/src/java/com/threerings/bureau/data/BureauMarshaller.java +++ b/src/java/com/threerings/bureau/data/BureauMarshaller.java @@ -24,6 +24,7 @@ package com.threerings.bureau.data; import com.threerings.bureau.client.BureauService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link BureauService} interface diff --git a/src/java/com/threerings/crowd/chat/data/ChatMarshaller.java b/src/java/com/threerings/crowd/chat/data/ChatMarshaller.java index 01444ab4e..ab7081014 100644 --- a/src/java/com/threerings/crowd/chat/data/ChatMarshaller.java +++ b/src/java/com/threerings/crowd/chat/data/ChatMarshaller.java @@ -26,6 +26,7 @@ import com.threerings.presents.client.Client; import com.threerings.presents.client.InvocationService; import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.dobj.InvocationResponseEvent; +import com.threerings.presents.net.Transport; import com.threerings.util.Name; /** @@ -54,7 +55,7 @@ public class ChatMarshaller extends InvocationMarshaller _invId = null; omgr.postEvent(new InvocationResponseEvent( callerOid, requestId, TELL_SUCCEEDED, - new Object[] { Long.valueOf(arg1), arg2 })); + new Object[] { Long.valueOf(arg1), arg2 }, transport)); } @Override // from InvocationMarshaller diff --git a/src/java/com/threerings/crowd/chat/data/SpeakMarshaller.java b/src/java/com/threerings/crowd/chat/data/SpeakMarshaller.java index aa4fd8e86..cdd814fe0 100644 --- a/src/java/com/threerings/crowd/chat/data/SpeakMarshaller.java +++ b/src/java/com/threerings/crowd/chat/data/SpeakMarshaller.java @@ -24,6 +24,7 @@ package com.threerings.crowd.chat.data; import com.threerings.crowd.chat.client.SpeakService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link SpeakService} interface diff --git a/src/java/com/threerings/crowd/data/BodyMarshaller.java b/src/java/com/threerings/crowd/data/BodyMarshaller.java index d13e5f826..ea75d9a4d 100644 --- a/src/java/com/threerings/crowd/data/BodyMarshaller.java +++ b/src/java/com/threerings/crowd/data/BodyMarshaller.java @@ -24,6 +24,7 @@ package com.threerings.crowd.data; import com.threerings.crowd.client.BodyService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link BodyService} interface diff --git a/src/java/com/threerings/crowd/data/LocationMarshaller.java b/src/java/com/threerings/crowd/data/LocationMarshaller.java index cbdea3278..cbbc3c342 100644 --- a/src/java/com/threerings/crowd/data/LocationMarshaller.java +++ b/src/java/com/threerings/crowd/data/LocationMarshaller.java @@ -25,6 +25,7 @@ import com.threerings.crowd.client.LocationService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; import com.threerings.presents.dobj.InvocationResponseEvent; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link LocationService} interface @@ -52,7 +53,7 @@ public class LocationMarshaller extends InvocationMarshaller _invId = null; omgr.postEvent(new InvocationResponseEvent( callerOid, requestId, MOVE_SUCCEEDED, - new Object[] { arg1 })); + new Object[] { arg1 }, transport)); } @Override // from InvocationMarshaller diff --git a/src/java/com/threerings/crowd/peer/data/CrowdPeerMarshaller.java b/src/java/com/threerings/crowd/peer/data/CrowdPeerMarshaller.java index b5d180de1..2896a92bf 100644 --- a/src/java/com/threerings/crowd/peer/data/CrowdPeerMarshaller.java +++ b/src/java/com/threerings/crowd/peer/data/CrowdPeerMarshaller.java @@ -27,6 +27,7 @@ import com.threerings.crowd.chat.data.UserMessage; import com.threerings.crowd.peer.client.CrowdPeerService; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; +import com.threerings.presents.net.Transport; import com.threerings.util.Name; /** diff --git a/src/java/com/threerings/presents/data/TimeBaseMarshaller.java b/src/java/com/threerings/presents/data/TimeBaseMarshaller.java index 659224a14..6576f2209 100644 --- a/src/java/com/threerings/presents/data/TimeBaseMarshaller.java +++ b/src/java/com/threerings/presents/data/TimeBaseMarshaller.java @@ -24,6 +24,7 @@ package com.threerings.presents.data; import com.threerings.presents.client.Client; import com.threerings.presents.client.TimeBaseService; import com.threerings.presents.dobj.InvocationResponseEvent; +import com.threerings.presents.net.Transport; /** * Provides the implementation of the {@link TimeBaseService} interface @@ -51,7 +52,7 @@ public class TimeBaseMarshaller extends InvocationMarshaller _invId = null; omgr.postEvent(new InvocationResponseEvent( callerOid, requestId, GOT_TIME_OID, - new Object[] { Integer.valueOf(arg1) })); + new Object[] { Integer.valueOf(arg1) }, transport)); } @Override // from InvocationMarshaller diff --git a/src/java/com/threerings/presents/peer/data/PeerMarshaller.java b/src/java/com/threerings/presents/peer/data/PeerMarshaller.java index 181500e5b..98ad2f3c3 100644 --- a/src/java/com/threerings/presents/peer/data/PeerMarshaller.java +++ b/src/java/com/threerings/presents/peer/data/PeerMarshaller.java @@ -23,6 +23,7 @@ package com.threerings.presents.peer.data; import com.threerings.presents.client.Client; import com.threerings.presents.data.InvocationMarshaller; +import com.threerings.presents.net.Transport; import com.threerings.presents.peer.client.PeerService; /**