View Javadoc

1   package cz.cuni.amis.pogamut.multi.communication.worldview;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldChangeEvent;
4   import cz.cuni.amis.pogamut.base.component.ISharedComponent;
5   import cz.cuni.amis.pogamut.base.component.bus.exception.ComponentNotRunningException;
6   import cz.cuni.amis.pogamut.base.component.bus.exception.ComponentPausedException;
7   
8   /**
9    * General interface for shared components capable of processing events.
10   * @author srlok
11   *
12   */
13  public interface ISharedWorldChangeEventInput extends ISharedComponent{
14  	
15  	public void notify(IWorldChangeEvent event ) throws ComponentNotRunningException, ComponentPausedException;
16  
17  
18  }