Package TCM_MPI_UTILS.Socket

Examples of TCM_MPI_UTILS.Socket.SocketTcm


    private ArrayBlockingQueue<InterfaceTcmMpiBasicPackage> _SEND_QUEUE;
    private BufferInfov2 TCM_BUFFER;
   
    public TCM_MPI_TCPv2(int ID,String SERVER_IP,int POR_SERVER)throws Exception{
       
        this.ISOCKET = new SocketTcm();
        while(this.ISOCKET.Connect(SERVER_IP, 12345) != true){
            System.out.println("NÃO CONECTADO ...");
            Thread.sleep(1000);
        }
       
View Full Code Here

TOP

Related Classes of TCM_MPI_UTILS.Socket.SocketTcm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.