Interface IContainerSharedObjectMessageSendingEvent
- 
- All Superinterfaces:
- Event,- IContainerEvent
 - All Known Implementing Classes:
- ContainerSharedObjectMessageSendingEvent
 
 public interface IContainerSharedObjectMessageSendingEvent extends IContainerEvent Container event that indicates that a shared object message is being sent.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetMessage()Get the message being sent.IDgetSharedObjectID()Get the shared object ID of the sending shared object.IDgetTargetContainerID()Get the target container ID for the message being sent.- 
Methods inherited from interface org.eclipse.ecf.core.events.IContainerEventgetLocalContainerID
 
- 
 
- 
- 
- 
Method Detail- 
getTargetContainerIDID getTargetContainerID() Get the target container ID for the message being sent.- Returns:
- ID of target container for the message being sent.  If null, this indicates that all container members of group should receive the message being sent.
 
 - 
getSharedObjectIDID getSharedObjectID() Get the shared object ID of the sending shared object. This value will not benulland the ID given will be the ID of a currently active shared object existing within the enclosing container.- Returns:
- ID of the shared object that is sending the message.  Will not be null.
 
 - 
getMessageObject getMessage() Get the message being sent. This will return the message being sent by the shared object identified bygetSharedObjectID(). May benullif null is being sent.- Returns:
- Object the message being sent by the shared object identified via getSharedObjectID(). May benull.
 
 
- 
 
-