Uses of Class
org.jgrapes.io.events.StartProcess
Packages that use StartProcess
Package
Description
Provides the events used by the I/O related components.
Classes for managing processes.
- 
Uses of StartProcess in org.jgrapes.io.eventsMethods in org.jgrapes.io.events that return StartProcessModifier and TypeMethodDescriptionSets the working directory for the process.StartProcess.environment(String key, String value) Sets a single value in the environment of the process to be created, seeenvironment(Map).StartProcess.environment(Map<String, String> environment) Sets the environment for the process to be created.ProcessExited.startedBy()Returns the event that started the terminated process.ProcessStarted.startEvent()Returns the event that started the process.Constructors in org.jgrapes.io.events with parameters of type StartProcessModifierConstructorDescriptionProcessExited(StartProcess startedBy, int exitValue) Instantiates a new event.ProcessStarted(StartProcess startEvent) Instantiates a new event.
- 
Uses of StartProcess in org.jgrapes.io.processMethods in org.jgrapes.io.process that return StartProcessModifier and TypeMethodDescriptionProcessManager.ProcessChannel.startEvent()Return the event that caused this channel to be created.Methods in org.jgrapes.io.process with parameters of type StartProcessModifier and TypeMethodDescriptionvoidProcessManager.onStartProcess(StartProcess event) Start a new process using the data from the event.