Package org.dtk.resources.build

Examples of org.dtk.resources.build.BuildRequestProcessor


   */
  protected void scheduleNewBuild(BuildRequest buildRequest) {
    // Code will go here to kick off new build thread, running
    // in the background. When thread completes, it'll change
    // the state to FINISHED or FAILED.
    BuildRequestProcessor t = new BuildRequestProcessor(buildRequest);
    new Thread(t).start();
  }
View Full Code Here

TOP

Related Classes of org.dtk.resources.build.BuildRequestProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.