for(int i = 0; i < 5; i++)
{
if(i % 2 == 1)
botArray[i] = new SampleObserverBot("ObserverBot_0" + i, null);
else
botArray[i] = new SamplePollingBot("PollingBot_0" + i, null);
botArray[i].connect("127.0.0.1", -1);
}
try { Thread.sleep(90000); } catch(InterruptedException e) { };