
org.simpleframework.transport.StopTrigger Maven / Gradle / Ivy
/*
* StopTrigger.java February 2009
*
* Copyright (C) 2009, Niall Gallagher
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*/
package org.simpleframework.transport;
import org.simpleframework.transport.reactor.Reactor;
import org.simpleframework.util.thread.Daemon;
/**
* The StopTrigger
object allows termination of the
* server to be done in an asynchronous manner. This ensures that
* should a HTTP request be used to terminate the server that
* it does not block waiting for the servicing thread pool to
* terminate causing a deadlock.
*
* @author Niall Gallagher
*/
class StopTrigger extends Daemon {
/**
* This is the internal processor that is to be terminated.
*/
private final Processor processor;
/**
* This is the internal write reactor that is terminated.
*/
private final Reactor reactor;
/**
* Constructor for the StopTrigger
object. For an
* orderly termination of the server, the processor and reactor
* provided to the constructor will be stopped asynchronously.
*
* @param processor this is the processor that is to be stopped
* @param reactor this is the reactor that is to be closed
*/
public StopTrigger(Processor processor, Reactor reactor) {
this.processor = processor;
this.reactor = reactor;
}
/**
* When this method runs it will firstly stop the processor in
* a synchronous fashion. Once the Processor
has
* stopped it will stop the Reactor
ensuring that
* all threads will be released.
*
* It is important to note that stopping the processor before
* stopping the reactor is required. This ensures that if there
* are any threads executing within the processor that require
* the reactor threads, they can complete without a problem.
*/
public void run() {
try {
processor.stop();
reactor.stop();
} catch(Exception e) {
return;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy