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. * Note: 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; } }