
com.threerings.presents.dobj.InvocationNotificationEvent Maven / Gradle / Ivy
//
// $Id: InvocationNotificationEvent.java 6581 2011-04-02 00:01:46Z mdb $
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2011 Three Rings Design, Inc., All Rights Reserved
// http://code.google.com/p/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.presents.dobj;
import com.samskivert.util.StringUtil;
/**
* Used to dispatch an invocation notification from the server to a client.
*
* @see DObjectManager#postEvent
*/
public class InvocationNotificationEvent extends DEvent
{
/**
* Constructs a new invocation notification event on the specified target object with the
* supplied receiver id, method id and arguments.
*
* @param targetOid the object id of the object on which the event is to be dispatched.
* @param receiverId identifies the receiver to which this notification is being dispatched.
* @param methodId the id of the method to be invoked.
* @param args the arguments for the method. This array should contain only values of valid
* distributed object types.
*/
public InvocationNotificationEvent (int targetOid, short receiverId, int methodId, Object[] args)
{
super(targetOid);
_receiverId = receiverId;
_methodId = (byte)methodId;
_args = args;
}
/**
* Returns the receiver id associated with this notification.
*/
public int getReceiverId ()
{
return _receiverId;
}
/**
* Returns the id of the method associated with this notification.
*/
public int getMethodId ()
{
return _methodId;
}
/**
* Returns the arguments associated with this notification.
*/
public Object[] getArgs ()
{
return _args;
}
@Override
public boolean applyToObject (DObject target)
throws ObjectAccessException
{
// nothing to do here
return true;
}
@Override
protected void notifyListener (Object listener)
{
// nothing to do here
}
@Override
protected void toString (StringBuilder buf)
{
buf.append("INOT:");
super.toString(buf);
buf.append(", rcvId=").append(_receiverId);
buf.append(", methodId=").append(_methodId);
buf.append(", args=").append(StringUtil.toString(_args));
}
/** Identifies the receiver to which this notification is being
* dispatched. */
protected short _receiverId;
/** The id of the receiver method being invoked. */
protected byte _methodId;
/** The arguments to the receiver method being invoked. */
protected Object[] _args;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy