Added stored interval id to server SafeInterval, to match client.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3223 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: SafeInterval.java,v 1.4 2004/08/27 02:20:25 mdb Exp $
|
// $Id$
|
||||||
//
|
//
|
||||||
// Narya library - tools for developing networked games
|
// Narya library - tools for developing networked games
|
||||||
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
|
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
|
||||||
@@ -64,9 +64,13 @@ public abstract class SafeInterval
|
|||||||
/** Handles the proper scheduling and queueing. */
|
/** Handles the proper scheduling and queueing. */
|
||||||
public void intervalExpired (int id, Object arg)
|
public void intervalExpired (int id, Object arg)
|
||||||
{
|
{
|
||||||
|
_iid = id;
|
||||||
_omgr.postUnit(this);
|
_omgr.postUnit(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The dobjmgr on which we queue ourselves when we expire. */
|
/** The dobjmgr on which we queue ourselves when we expire. */
|
||||||
protected PresentsDObjectMgr _omgr;
|
protected PresentsDObjectMgr _omgr;
|
||||||
|
|
||||||
|
/** Configured with our current interval id when we are triggered. */
|
||||||
|
protected int _iid;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user