Package railo.runtime.thread

Examples of railo.runtime.thread.ChildThreadImpl.start()


          throw new ApplicationException("could not create a thread with the name ["+name+"]. name must be unique within a request");
        ChildThreadImpl ct = new ChildThreadImpl((PageContextImpl) pc,currentPage,name,threadIndex,attrs,false);
        pc.setThreadScope(name,new ThreadsImpl(ct));
        ct.setPriority(priority);
        ct.setDaemon(false);
        ct.start();
      }
      else {
        ChildThreadImpl ct = new ChildThreadImpl((PageContextImpl) pc,currentPage,name,threadIndex,attrs,true);
        ct.setPriority(priority);
        ((ConfigImpl)pc.getConfig()).getSpoolerEngine().add(new ChildSpoolerTask(ct,plans));
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.