package com.sunchao.callback; /** * callback interface * @author Administrator * */ public interface CallBack { /** * execute the callback method * @param objects make the asyn execute result as the parameter of callback method */ public void execute…