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

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

There is a newer version: 1.2.8
Show newest version
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