Uses of Interface
anima.message.ISyncReceiver

Packages that use ISyncReceiver
anima.connector   
anima.connector.javalocal   
anima.message   
anima.message.javalocal   
examples.message.syncpingpong   
examples.statistics.v03   
examples.statistics.v04   
 

Uses of ISyncReceiver in anima.connector
 

Subinterfaces of ISyncReceiver in anima.connector
 interface ISyncConnector
          This Interface has two method's
 

Methods in anima.connector that return ISyncReceiver
 ISyncReceiver ISyncConnector.getReceiver()
          This method return an
public ISyncReceiver getReceiver();
 

Methods in anima.connector with parameters of type ISyncReceiver
 ISyncConnector IConnectorFactory.create1to1SyncConnector(ISyncSender sender, ISyncReceiver receiver)
          This method creates a synchronous connector.
 

Uses of ISyncReceiver in anima.connector.javalocal
 

Classes in anima.connector.javalocal that implement ISyncReceiver
 class JavaLocal1To1SyncConnector
          This class casts JavaLocal1to1SyncConector and implements the interface ISyncConnector This class utilizes two attributes: One sender (ISyncSender) and one receiver (ISyncReceiver)
 

Methods in anima.connector.javalocal that return ISyncReceiver
 ISyncReceiver JavaLocal1To1SyncConnector.getReceiver()
          This method returns an ISyncReceiver
public ISyncReceiver getReceiver() { return receiver; }
 

Methods in anima.connector.javalocal with parameters of type ISyncReceiver
 ISyncConnector JavaLocalConnectorFactory.create1to1SyncConnector(ISyncSender sender, ISyncReceiver receiver)
          This method creates a SyncConnector and uses parameters
public ISyncConnector create1to1SyncConnector(ISyncSender sender, ISyncReceiver receiver) throws ConnectorException { sender.connect(receiver); return new JavaLocal1To1SyncConnector(sender, receiver); }
 

Constructors in anima.connector.javalocal with parameters of type ISyncReceiver
JavaLocal1To1SyncConnector(ISyncSender sender, ISyncReceiver receiver)
          The constructor receives two parameters and it can to generate an exception
public JavaLocal1To1SyncConnector(ISyncSender sender, ISyncReceiver receiver) throws ConnectorException { if (receiver == null) throw new ConnectorException("connection sender cannot be null"); else if (sender == null) throw new ConnectorException("connection receiver cannot be null"); this.sender = sender; this.receiver = receiver; } Case receiver or sender be nulls an exception message will be generate
 

Uses of ISyncReceiver in anima.message
 

Methods in anima.message with parameters of type ISyncReceiver
 void ISyncSender.connect(ISyncReceiver connector)
           
 IMessage IBroker.dispatchSyncMessage(ISyncReceiver receiver, IMessage message)
          Dispatch an synchronous receiver, and our message
 

Uses of ISyncReceiver in anima.message.javalocal
 

Methods in anima.message.javalocal with parameters of type ISyncReceiver
 IMessage JavaLocalBroker.dispatchSyncMessage(ISyncReceiver receiver, IMessage message)
           
 

Uses of ISyncReceiver in examples.message.syncpingpong
 

Classes in examples.message.syncpingpong that implement ISyncReceiver
 class Pong
           
 

Constructors in examples.message.syncpingpong with parameters of type ISyncReceiver
Ping(IMessageFactory factory, IBroker broker, ISyncReceiver thePong)
           
 

Uses of ISyncReceiver in examples.statistics.v03
 

Classes in examples.statistics.v03 that implement ISyncReceiver
 class StatisticsComponentSyncMessage
           
 

Uses of ISyncReceiver in examples.statistics.v04
 

Methods in examples.statistics.v04 with parameters of type ISyncReceiver
 void StatisticsConsumerComponentSyncMessage.connect(ISyncReceiver connector)
           
 



Copyright © 2007. All Rights Reserved.