]]>
]]>
Stopped
special file
Stopped
a tool has terminated
Stopped(in string vendor,
in string toolName,
in string toolVersion);
DESCRIPTION
The
Stopped notice announces that
a tool has exited.
The
vendor argument
is the vendor of the terminated tool.
The
toolName argument
is the name of the terminated tool.
The
toolVersion argument
is the version of the terminated tool.
EXAMPLES
A pattern observing the
Stopped request can be registered as
in the following example:
Tt_pattern pat = tt_pattern_create();
tt_pattern_category_set(pat, TT_OBSERVE);
tt_pattern_scope_add(pat, TT_SESSION);
char *ses = tt_default_session();
tt_pattern_session_add(pat, ses);
tt_free(ses);
tt_pattern_op_add(pat, Tttk_Started);
tt_pattern_op_add(pat, Tttk_Stopped);
tt_pattern_callback_add(pat, my_callback);
tt_pattern_register(pat);
The
Stopped request can be sent with
&cdeman.ttdt.close;.
SEE ALSO
&cdeman.tt.free;, &cdeman.tt.pattern.callback.add;, &cdeman.tt.pattern.category.set;, &cdeman.tt.pattern.op.add;, &cdeman.tt.pattern.register;, &cdeman.tt.pattern.scope.add;, &cdeman.tt.pattern.session.add;, &cdeman.ttdt.close;; Started notice.