com.eshore.socketapi.server.ConnDocking Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy-suite Show documentation
Show all versions of proxy-suite Show documentation
a Intranet-through project
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