fun main() { | |
val executor = createActionExecutor() | |
executor.executeByResponse(Response("print", "leonidas")) | |
executor.executeByResponse(Response("log", "kotlin")) | |
executor.executeByResponse(Response("write_to_file", "leonidas loves kotlin")) | |
executor.executeByResponse(Response("print", "$&#$@#", isError = true)) | |
} | |
private fun createActionExecutor(): ActionExecutor { | |
return ActionExecutor().apply { | |
addAction(PrintInErrorStream(Print())) // first try to print in error and the in simple | |
addAction(Log()) | |
addAction(WriteToFile()) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment