src/java/org/apache/fulcrum/yaafi/service/reconfiguration/ReconfigurationServiceImpl.java [168:190]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void start() throws Exception {
		this.getLogger().debug("Starting worker thread ...");
		this.workerThread.start();
	}

	/**
	 * @see org.apache.avalon.framework.activity.Startable#stop()
	 */
	public void stop() throws Exception {
		this.getLogger().debug("Stopping worker thread ...");
		this.terminateNow = true;
		this.workerThread.interrupt();
		this.workerThread.join(10000);
	}

	/**
	 * @see org.apache.avalon.framework.activity.Disposable#dispose()
	 */
	public void dispose() {
		this.terminateNow = false;
		this.applicationDir = null;
		this.workerThread = null;
		this.serviceManager = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/yaafi/service/shutdown/ShutdownServiceImpl.java [141:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void start() throws Exception {
		this.getLogger().debug("Starting worker thread ...");
		this.workerThread.start();
	}

	/**
	 * @see org.apache.avalon.framework.activity.Startable#stop()
	 */
	public void stop() throws Exception {
		this.getLogger().debug("Stopping worker thread ...");
		this.terminateNow = true;
		this.workerThread.interrupt();
		this.workerThread.join(10000);
	}

	/**
	 * @see org.apache.avalon.framework.activity.Disposable#dispose()
	 */
	public void dispose() {
		this.terminateNow = false;
		this.applicationDir = null;
		this.workerThread = null;
		this.serviceManager = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



