Package fm.ak.burer.client

Source Code of fm.ak.burer.client.Burer

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package fm.ak.burer.client;

import ak.fm.burer.Connection;
import ak.fm.burer.Networker;
import java.io.IOException;
import java.net.UnknownHostException;

/**
* CLIENT
*
* @author burer
*/
public class Burer extends Networker {   
    final int PAUSE = 10;
   
    private Connection connection;
   
    public Burer() {
       
    }
   
    public void connect
            (String name, int port)
            throws UnknownHostException, IOException {
        connection = new Connection(name, port);
    }
   
    public Connection getConnection() {
        return connection;
    }
   
    void send(Package p[]) {
       
    }
   
}
TOP

Related Classes of fm.ak.burer.client.Burer

TOP
Copyright © 2018 www.massapi.com. 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.