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

cn.tom.transport.Messager Maven / Gradle / Ivy

The newest version!
package cn.tom.transport;

import java.io.IOException;

public class Messager {
	
	public static interface MessageCallback { 
		public void onReturn(T result);  
	}
	
	public interface MessageHandler { 
		public void handleMessage(T msg, Session sess) throws IOException;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy