mirror of
https://github.com/ChronosX88/KademliaDHT.git
synced 2024-11-22 10:12:19 +00:00
17 lines
264 B
Java
17 lines
264 B
Java
|
package kademlia.simulations;
|
||
|
|
||
|
/**
|
||
|
* A class that specifies the structure for simulations.
|
||
|
*
|
||
|
* @author Joshua Kissoon
|
||
|
* @since
|
||
|
*/
|
||
|
public interface Simulation
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Calling this method runs the simulation
|
||
|
*/
|
||
|
public void runSimulation();
|
||
|
}
|