Files
narya/src/as/com/threerings/presents/net/PingRequest.as
T
Ray Greenwell 251566b321 - Added TokenRing
- Specify override first on overridden methods.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4170 542714f4-19e9-0310-aa3c-eee0fc999fb1
2006-06-05 21:28:00 +00:00

35 lines
845 B
ActionScript

package com.threerings.presents.net {
import flash.utils.getTimer;
import com.threerings.io.ObjectOutputStream;
public class PingRequest extends UpstreamMessage
{
/** The number of milliseconds of idle upstream that are allowed to elapse
* before the client sends a ping message to the server to let it
* know that we're still alive. */
public static const PING_INTERVAL :uint = 60 * 1000;
public function PingRequest ()
{
super();
}
public function getPackStamp () :uint
{
return _packStamp;
}
// documentation inherited
override public function writeObject (out :ObjectOutputStream) :void
{
_packStamp = getTimer();
super.writeObject(out);
}
/** A time stamp obtained when we serialize this object. */
protected var _packStamp :uint;
}
}