www.pudn.com > cmpp.rar > CmppListener.java


package com.fetion.cmpp.client; 
 
import com.fetion.cmpp.common.ServerResponse; 
 
/** 
 * 客户端的回调接口 
 * @author Administrator 
 * 
 */ 
public interface CmppListener { 
	public void onServerResponse(ServerResponse serverResponse); 
 
	public void onException(Throwable throwable); 
 
	public void sessionOpened(); 
 
	public void sessionClosed(); 
}