When executing commands on the TclInterpreter, is there any way to get the stdout prior to the completion of the result?
Eg, I have:
IInterpreterResult result = tclInterpreter.execute(command);
But the command it's running may take several minutes to complete, and I'd like to display stdout while it's running, rather than wait for the result at the end.
I'm guessing this is where model.addListener() would come in, so that's where I'm going to dig. But if there any any examples/general thoughts I should be looking at first, that'd be handy.
Thanks,
-Bill