Uses of Interface
org.zeroturnaround.exec.stop.ProcessStopper
-
Packages that use ProcessStopper Package Description org.zeroturnaround.exec org.zeroturnaround.exec.stop -
-
Uses of ProcessStopper in org.zeroturnaround.exec
Fields in org.zeroturnaround.exec declared as ProcessStopper Modifier and Type Field Description private ProcessStopper
ProcessExecutor. stopper
Helper for stopping the process in case of timeout or cancellation.private ProcessStopper
WaitForProcess. stopper
Helper for stopping the process in case of interruption.Methods in org.zeroturnaround.exec with parameters of type ProcessStopper Modifier and Type Method Description ProcessExecutor
ProcessExecutor. 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 ProcessStopper Constructor Description WaitForProcess(java.lang.Process process, ProcessAttributes attributes, ProcessStopper stopper, ProcessCloser closer, java.io.ByteArrayOutputStream out, ProcessListener listener, MessageLogger messageLogger)
-
Uses of ProcessStopper in org.zeroturnaround.exec.stop
Classes in org.zeroturnaround.exec.stop that implement ProcessStopper Modifier and Type Class Description class
DestroyProcessStopper
DefaultProcessStopper
implementation that just invokesProcess.destroy()
.class
NopProcessStopper
ProcessStopper
implementation that does nothing - it keeps the process running.Fields in org.zeroturnaround.exec.stop declared as ProcessStopper Modifier and Type Field Description static ProcessStopper
DestroyProcessStopper. INSTANCE
Singleton instance of theDestroyProcessStopper
.static ProcessStopper
NopProcessStopper. INSTANCE
Singleton instance of theNopProcessStopper
.
-