Stop using TrackedObjects.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3726 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-10-11 19:17:43 +00:00
parent dd2468b140
commit 5bd90aa797
15 changed files with 37 additions and 38 deletions
@@ -122,7 +122,7 @@ import com.threerings.presents.Log;
*
* Fields of type {@link Streamable} can also be used.
*/
public class DObject extends TrackedObject
public class DObject
implements Streamable
{
public DObject ()
@@ -1,5 +1,5 @@
//
// $Id: DownstreamMessage.java,v 1.13 2004/08/27 02:20:22 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,14 +21,14 @@
package com.threerings.presents.net;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
/**
* This class encapsulates a message in the distributed object protocol
* that flows from the server to the client. Downstream messages include
* object subscription, event forwarding and session management.
*/
public abstract class DownstreamMessage extends TrackedStreamableObject
public abstract class DownstreamMessage extends SimpleStreamableObject
{
/**
* The message id of the upstream message with which this downstream
@@ -1,5 +1,5 @@
//
// $Id: UpstreamMessage.java,v 1.14 2004/08/27 02:20:22 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,14 +21,14 @@
package com.threerings.presents.net;
import com.threerings.io.TrackedStreamableObject;
import com.threerings.io.SimpleStreamableObject;
/**
* This class encapsulates a message in the distributed object protocol
* that flows from the client to the server. Upstream messages include
* object subscription, event forwarding and session management.
*/
public abstract class UpstreamMessage extends TrackedStreamableObject
public abstract class UpstreamMessage extends SimpleStreamableObject
{
/**
* This is a unique (within the context of a reasonable period of