Make Raft messages serializable
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / example / TestDriver.java
index c8a7835334b4648da380b948822e648cad4d7c41..c2d0b3a6b7cf9a043554ee092de35fd22a8d293d 100644 (file)
@@ -14,7 +14,12 @@ import java.util.Map;
 import java.util.Random;
 import java.util.concurrent.ConcurrentHashMap;
 
-
+/**
+ * This is a test driver for testing akka-raft implementation
+ * Its uses ExampleActors and threads to push content(key-vals) to these actors
+ * Each ExampleActor can have one or more ClientActors. Each ClientActor spawns
+ * a thread and starts push logs to the actor its assignged to.
+ */
 public class TestDriver {
 
     private static final ActorSystem actorSystem = ActorSystem.create();