More bits and hackery (and a hand-generated TimeBaseMarshaller, so that I
can get fully logged in). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3904 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.threerings.presents.data {
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.GotTimeBaseListener;
|
||||
import com.threerings.presents.client.TimeBaseService;
|
||||
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
|
||||
// TODO
|
||||
// This will be auto-generated soon from the service definition
|
||||
public class TimeBaseMarshaller extends InvocationMarshaller
|
||||
implements TimeBaseService
|
||||
{
|
||||
public static const GET_TIME_OID :int = 1;
|
||||
|
||||
public function getTimeOid (
|
||||
arg1 :Client, arg2 :String, arg3 :GotTimeBaseListener) :void
|
||||
{
|
||||
var listener3 :GotTimeBaseMarshaller = new GotTimeBaseMarshaller();
|
||||
listener3.listener = arg3;
|
||||
sendRequest(arg1, GET_TIME_OID, [arg2, listener3]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user