标签: mruby
我正在编写一个需要$stdin的非阻塞读取的应用程序。
$stdin
通常(如果我使用Ruby而不是mRuby)我会通过Thread和Queue类完成此操作。不幸的是,mRuby本身没有提供这些内容,might not be possible gem中的mruby-thread似乎。
Thread
Queue
如何在mRuby中执行$ stdin.gets()的非阻塞读取,最好不使用自定义扩展?