blob: 9a25b3ca4e0961a014f8b5d498d72bbac36507f3 [file] [log] [blame]
package edu.uci.ics.hyracks.api.application;
public interface INCApplicationEntryPoint {
public void start(INCApplicationContext ncAppCtx, String[] args) throws Exception;
public void notifyStartupComplete() throws Exception;
public void stop() throws Exception;
}