* Make getEvaluator() and releaseEvaluator() methods public
* Immediately mark application as running in init() * Adapt to new signature of NodeManager.init()
This commit is contained in:
parent
9ef4316dd6
commit
127395afdb
1 changed files with 5 additions and 6 deletions
|
@ -272,6 +272,8 @@ public final class Application implements IPathElement, Runnable {
|
|||
throws DatabaseException, IllegalAccessException,
|
||||
InstantiationException, ClassNotFoundException {
|
||||
|
||||
running = true;
|
||||
|
||||
// create and init session manager
|
||||
String sessionMgrImpl = props.getProperty("sessionManagerImpl",
|
||||
"helma.framework.core.SessionManager");
|
||||
|
@ -360,11 +362,10 @@ public final class Application implements IPathElement, Runnable {
|
|||
|
||||
// create the node manager
|
||||
nmgr = new NodeManager(this);
|
||||
nmgr.init(dbDir.getAbsolutePath(), props);
|
||||
nmgr.init(dbDir.getAbsoluteFile(), props);
|
||||
|
||||
// reset the classloader to the parent/system/server classloader.
|
||||
Thread.currentThread().setContextClassLoader(typemgr.getClassLoader().getParent());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -373,8 +374,6 @@ public final class Application implements IPathElement, Runnable {
|
|||
public synchronized void start() {
|
||||
starttime = System.currentTimeMillis();
|
||||
|
||||
running = true;
|
||||
|
||||
worker = new Thread(this, "Worker-" + name);
|
||||
worker.setPriority(Thread.NORM_PRIORITY + 1);
|
||||
worker.start();
|
||||
|
@ -450,7 +449,7 @@ public final class Application implements IPathElement, Runnable {
|
|||
/**
|
||||
* Returns a free evaluator to handle a request.
|
||||
*/
|
||||
private RequestEvaluator getEvaluator() {
|
||||
public RequestEvaluator getEvaluator() {
|
||||
if (!running) {
|
||||
throw new ApplicationStoppedException();
|
||||
}
|
||||
|
@ -503,7 +502,7 @@ public final class Application implements IPathElement, Runnable {
|
|||
/**
|
||||
* Returns an evaluator back to the pool when the work is done.
|
||||
*/
|
||||
protected void releaseEvaluator(RequestEvaluator ev) {
|
||||
public void releaseEvaluator(RequestEvaluator ev) {
|
||||
if (ev != null) {
|
||||
ev.recycle();
|
||||
freeThreads.push(ev);
|
||||
|
|
Loading…
Add table
Reference in a new issue