View Javadoc

1   package cz.cuni.amis.pogamut.base.agent.params;
2   
3   import cz.cuni.amis.pogamut.base.communication.connection.IWorldConnectionAddress;
4   
5   /**
6    * Remote agent parameters are additionally providing an address of the remote environment which the 
7    * agent has to connect into.
8    * 
9    * @author Jimmy
10   *
11   * @param <ADDRESS>
12   */
13  public interface IRemoteAgentParameters extends IAgentParameters {
14  	
15  	/**
16  	 * Address of the environment the newly created agent has to connect into.
17  	 * 
18  	 * @return environment address
19  	 */
20  	public IWorldConnectionAddress getWorldAddress();
21  
22  }