-
Notifications
You must be signed in to change notification settings - Fork 9
Initializing Event
Ta Van Dung edited this page Jun 17, 2016
·
3 revisions
import com.tvd12.ezyfox.core.annotation.ServerEventHandler;
import com.tvd12.ezyfox.core.config.ServerEvent;
import com.tvd12.ezyfox.core.content.AppContext;
import com.tvd12.ezyfox.db.SessionFactoryProvider;
@ServerEventHandler(event = ServerEvent.SERVER_INITIALIZING)
public class ServerInitializingHandler {
public void handle(AppContext context) {
// your business
}
}
Hello World