Package com.art.anette.server.network

Examples of com.art.anette.server.network.SyncDownThread


     * @param id
     */
    public ServerDBControl(Employee owner, ClientThread clientThread, int id) {
        this.owner = owner;
        owner.setDBControl(this);
        syncDown = new SyncDownThread(this, id);
        syncDown.freeze();
        dbConnector = ServerDB.getInstance();
        SDBCPool.getInstance().register(this, clientThread);

        try {
View Full Code Here

TOP

Related Classes of com.art.anette.server.network.SyncDownThread

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.