Interface AbstractPythonProcessService.InputHandler
-
- Enclosing class:
- AbstractPythonProcessService
protected static interface AbstractPythonProcessService.InputHandlerDefines a function that handles "parsed" input, split into type and serialized data.- Author:
- Holger Eichelberger, SSE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandle(java.lang.String type, java.lang.String data)Handles input.
-
-
-
Method Detail
-
handle
boolean handle(java.lang.String type, java.lang.String data) throws java.io.IOExceptionHandles input.- Parameters:
type- the typedata- the data- Returns:
truefor continue reading lines,falseelse- Throws:
java.io.IOException- in case that data cannot be translated/processed
-
-