A System wide interface to automating Tcl scripts.
TclAutomate allows a client to set up a Tcl script which
talks to TANGO control objects and run it.
The client can interrogate the script while it is running
retrieve results, stop it or save it.
The idea behind TclAutomate is to give the client
a way to do sequencing and batching via the powerful Tcl language.
void clear(in string name)
raises(DevFailed);
clear script
name -of script to clear
void continue(in string name)
raises(DevFailed);
continue executing script
name -of script to continue executing
void load(in string name,
in string script)
raises(DevFailed);
load script
name -of new script
script -new script to load
void open(in string file)
raises(DevFailed);
open file as script
file -name of file to open
void restart(in string name)
raises(DevFailed);
restart script
name -of script to restart
void run(in DevVarStringArray args,
in CallBack cb)
raises(DevFailed);
start script running
args -arguments to be passed to script
cb -client callback to call on completion
void stop(in string name)
raises(DevFailed);
stop executing script
name -of script to stop
Generated by the ORBacus IDL-to-HTML translator