Uses of Interface
org.zeroturnaround.exec.stop.ProcessStopper
Packages that use ProcessStopper
-
Uses of ProcessStopper in org.zeroturnaround.exec
Fields in org.zeroturnaround.exec declared as ProcessStopperModifier and TypeFieldDescriptionprivate ProcessStopper
ProcessExecutor.stopper
Helper for stopping the process in case of timeout or cancellation.private final ProcessStopper
WaitForProcess.stopper
Helper for stopping the process in case of interruption.Methods in org.zeroturnaround.exec with parameters of type ProcessStopperModifier and TypeMethodDescriptionProcessExecutor.stopper
(ProcessStopper stopper) Sets the helper for stopping the process in case of timeout or cancellation.Constructors in org.zeroturnaround.exec with parameters of type ProcessStopperModifierConstructorDescriptionWaitForProcess
(Process process, ProcessAttributes attributes, ProcessStopper stopper, ProcessCloser closer, ByteArrayOutputStream out, ProcessListener listener, MessageLogger messageLogger) -
Uses of ProcessStopper in org.zeroturnaround.exec.stop
Classes in org.zeroturnaround.exec.stop that implement ProcessStopperModifier and TypeClassDescriptionclass
DefaultProcessStopper
implementation that just invokesProcess.destroy()
.class
ProcessStopper
implementation that does nothing - it keeps the process running.Fields in org.zeroturnaround.exec.stop declared as ProcessStopperModifier and TypeFieldDescriptionstatic final ProcessStopper
DestroyProcessStopper.INSTANCE
Singleton instance of theDestroyProcessStopper
.static final ProcessStopper
NopProcessStopper.INSTANCE
Singleton instance of theNopProcessStopper
.