Package com.intellij.execution.process
Interface ProcessListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
OsProcessHandlerListener
,ProcessAdapter
public interface ProcessListener extends EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onTextAvailable(ProcessEvent event, Key outputType)
void
processTerminated(ProcessEvent event)
void
processWillTerminate(ProcessEvent event, boolean willBeDestroyed)
void
startNotified(ProcessEvent event)
-
-
-
Method Detail
-
startNotified
void startNotified(ProcessEvent event)
-
processTerminated
void processTerminated(ProcessEvent event)
-
processWillTerminate
void processWillTerminate(ProcessEvent event, boolean willBeDestroyed)
-
onTextAvailable
void onTextAvailable(ProcessEvent event, Key outputType)
-
-