Kernel.java 340 Bytes
Newer Older
Juon Kawakami's avatar
init  
Juon Kawakami committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package firesimulator.kernel;

import firesimulator.simulator.Simulator;



/**
 * @author tn
 *
 */
public interface Kernel {

	public void register(Simulator sim);

	public void establishConnection();
	
	public void signalReadyness();
	
	public boolean waitForNextCycle();
	
	public void sendUpdate();
	
	public void receiveUpdate();	

}