Files
narya/src/as/com/threerings/presents/dobj/MessageEvent.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

98 lines
2.7 KiB
ActionScript

package com.threerings.presents.dobj {
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;
import com.threerings.io.TypedArray;
import com.threerings.util.StringBuilder;
/**
* A message event is used to dispatch a message to all subscribers of a
* distributed object without actually changing any of the fields of the
* object. A message has a name, by which different subscribers of the
* same object can distinguish their different messages, and an array of
* arguments by which any contents of the message can be delivered.
*
* @see DObjectManager#postEvent
*/
public class MessageEvent extends NamedEvent
{
/**
* Constructs a new message event on the specified target object with
* the supplied name and arguments.
*
* @param targetOid the object id of the object whose attribute has
* changed.
* @param name the name of the message event.
* @param args the arguments for this message. This array should
* contain only values of valid distributed object types.
*/
public function MessageEvent (
targetOid :int = 0, name :String = null, args :Array = null)
{
super(targetOid, name);
_args = args;
}
/**
* Returns the arguments to this message.
*/
public function getArgs () :Array
{
return _args;
}
/**
* Replaces the arguments associated with this message event.
* <em>Note:</em> this should only be called on events that have not
* yet been dispatched into the distributed object system.
*/
public function setArgs (args :Array) :void
{
_args = args;
}
/**
* Applies this attribute change to the object.
*/
override public function applyToObject (target :DObject) :Boolean
//throws ObjectAccessException
{
// nothing to do here
return true;
}
// documentation inherited
override protected function notifyListener (listener :Object) :void
{
if (listener is MessageListener) {
listener.messageReceived(this);
}
}
// documentation inherited
override protected function toStringBuf (buf :StringBuilder) :void
{
buf.append("MSG:");
super.toStringBuf(buf);
buf.append(", args=", _args);
}
// documentation inherited
override public function writeObject (out :ObjectOutputStream) :void
{
super.writeObject(out);
out.writeField(_args);
}
// documentation inherited
override public function readObject (ins :ObjectInputStream) :void
{
super.readObject(ins);
_args = (ins.readField(Array) as Array);
}
protected var _args :Array;
}
}