Package org.apache.commons.exec
Class ShutdownHookProcessDestroyer
- java.lang.Object
 - 
- org.apache.commons.exec.ShutdownHookProcessDestroyer
 
 
- 
- All Implemented Interfaces:
 java.lang.Runnable,ProcessDestroyer
public class ShutdownHookProcessDestroyer extends java.lang.Object implements ProcessDestroyer, java.lang.Runnable
Destroys all registeredProcesses when the VM exits. 
- 
- 
Constructor Summary
Constructors Constructor Description ShutdownHookProcessDestroyer()Constructs aProcessDestroyerand obtainsRuntime.addShutdownHook()andRuntime.removeShutdownHook()through reflection. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(java.lang.Process process)Returnstrueif the specifiedProcesswas successfully added to the list of processes to destroy upon VM exit.booleanisAddedAsShutdownHook()Returns whether or not the ProcessDestroyer is registered as as shutdown hookbooleanremove(java.lang.Process process)Returnstrueif the specifiedProcesswas successfully removed from the list of processes to destroy upon VM exit.voidrun()Invoked by the VM when it is exiting.intsize()Returns the number of registered processes. 
 - 
 
- 
- 
Constructor Detail
- 
ShutdownHookProcessDestroyer
public ShutdownHookProcessDestroyer()
Constructs aProcessDestroyerand obtainsRuntime.addShutdownHook()andRuntime.removeShutdownHook()through reflection. The ProcessDestroyer manages a list of processes to be destroyed when the VM exits. If a process is added when the list is empty, thisProcessDestroyeris registered as a shutdown hook. If removing a process results in an empty list, theProcessDestroyeris removed as a shutdown hook. 
 - 
 
- 
Method Detail
- 
isAddedAsShutdownHook
public boolean isAddedAsShutdownHook()
Returns whether or not the ProcessDestroyer is registered as as shutdown hook- Returns:
 - true if this is currently added as shutdown hook
 
 
- 
add
public boolean add(java.lang.Process process)
Returnstrueif the specifiedProcesswas successfully added to the list of processes to destroy upon VM exit.- Specified by:
 addin interfaceProcessDestroyer- Parameters:
 process- the process to add- Returns:
 trueif the specifiedProcesswas successfully added
 
- 
remove
public boolean remove(java.lang.Process process)
Returnstrueif the specifiedProcesswas successfully removed from the list of processes to destroy upon VM exit.- Specified by:
 removein interfaceProcessDestroyer- Parameters:
 process- the process to remove- Returns:
 trueif the specifiedProcesswas successfully removed
 
- 
size
public int size()
Returns the number of registered processes.- Specified by:
 sizein interfaceProcessDestroyer- Returns:
 - the number of register process
 
 
- 
run
public void run()
Invoked by the VM when it is exiting.- Specified by:
 runin interfacejava.lang.Runnable
 
 - 
 
 -