如何在循环中捕获用户的键盘笔划(例如“repeat”或“while(TRUE)”)?
我想要类似 REPL 的东西,而不会干扰循环中的流媒体服务。
示例伪代码
While (TRUE) {
# Capture terminal keyboard stroke
# If Ctrl+Q then Stop, break
# else Continue Loop services and monitoring other streams ( twitter for example )
}
所以,我想知道我应该使用什么类型的连接?文本、原始、二进制或标准输入?
并且不中断循环服务。任何想法、技巧、提示或技巧?