All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eshore.socketapi.server.ConnDocking Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package com.eshore.socketapi.server;

public class ConnDocking extends Docking {

	GlobWorker gw;
	public ConnDocking(String id,GlobWorker gw){
		this.gw=gw;
		this.setId(id);
	}
	@Override
	public void run() {
		
		ClientWorker out=getOut();
		ClientWorker in=getIn();
		out.setOutClinet(in);
		in.setOutClinet(out);
		gw.addClientWorker(getOut());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy