@SuppressWarnings({"CallToThreadStartDuringObjectConstruction", "empty-statement", "SleepWhileInLoop", "LeakingThisInConstructor"})
public TCM_MPI_TCP(int ID,String SERVER_IP,int POR_SERVER) throws Exception {
this.TCM_ID = ID;
this.ISOCKET = new SocketJvm();
while(this.ISOCKET.Connect(SERVER_IP, 12345) != true){
System.out.println("NÃO CONECTADO ...");
Thread.sleep(1000);
}
this.ISOCKET.SendCount(ID);