Updated to match API changes in Beta3.

InvocationRegistration had a constructor called Registration. I wonder if
that was causing the compile error with beta2.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4104 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-09 23:03:47 +00:00
parent ff674f818f
commit e100ef4faf
39 changed files with 101 additions and 85 deletions
@@ -1,8 +1,7 @@
package com.threerings.presents.net {
import flash.util.StringBuilder;
import com.threerings.util.Name;
import com.threerings.util.StringBuilder;
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;
@@ -1,5 +1,7 @@
package com.threerings.presents.net {
import flash.utils.getTimer;
import com.threerings.io.ObjectOutputStream;
public class PingRequest extends UpstreamMessage
@@ -22,7 +24,7 @@ public class PingRequest extends UpstreamMessage
// documentation inherited
public override function writeObject (out :ObjectOutputStream) :void
{
_packStamp = flash.util.getTimer();
_packStamp = getTimer();
super.writeObject(out);
}
@@ -1,5 +1,7 @@
package com.threerings.presents.net {
import flash.utils.getTimer;
import com.threerings.util.Long;
import com.threerings.io.ObjectInputStream;
@@ -30,7 +32,7 @@ public class PongResponse extends DownstreamMessage
public override function readObject (ins :ObjectInputStream) :void
{
_unpackStamp = flash.util.getTimer();
_unpackStamp = getTimer();
super.readObject(ins);
// TODO: Figure out how we're really going to cope with longs
@@ -21,9 +21,8 @@
package com.threerings.presents.net {
import flash.util.StringBuilder;
import com.threerings.util.Name;
import com.threerings.util.StringBuilder;
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;