com.eshore.socketapi.server.OnceMsgWatcher 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;
import java.net.Socket;
import com.eshore.socketapi.commons.Action;
public abstract class OnceMsgWatcher {
String id;
Action action;
Socket socket;
public OnceMsgWatcher(String id){
this.id=id;
}
public void setAction(Action a){
action = a;
}
public void setSocket(Action a){
action = a;
}
public abstract void doWatch();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy