Examples of forceColdstart()


Examples of org.jdesktop.wonderland.modules.darkstar.api.weblib.DarkstarRunner.forceColdstart()

                   
        }

        WFSRoot root = getRoot(snapshotID);
        runner.setWFSName(root.getRootPath());
        runner.forceColdstart();
       
        return Response.ok().cacheControl(NO_CACHE).build();
    }
   
    @GET
View Full Code Here

Examples of org.jdesktop.wonderland.modules.darkstar.api.weblib.DarkstarRunner.forceColdstart()

            return res;
        }

        // set the name
        runner.setWFSName(root.getRootPath());
        runner.forceColdstart();

        // complete the restart
        completeRestart(request, runner);
        return null;
    }
View Full Code Here

Examples of org.jdesktop.wonderland.modules.darkstar.api.weblib.DarkstarRunner.forceColdstart()

                if (nameParam == null) {
                    throw new RunnerException("Name is required");
                }
                dr.setWFSName(nameParam);
            } else if (action.equalsIgnoreCase("coldstart")) {
                dr.forceColdstart();
            } else {
                throw new RunnerException("Unkown action " + action);     
            }
           
            ResponseBuilder rb = Response.ok();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.