in ClientLibrary/ClientLibrary.cs [348:360]
private bool ProcessNextLine()
{
Action a = _iohandler.ReadAction();
if (a != null)
{
DispatchAction(a);
return true;
}
else
{
return false;
}
}