123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
- "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
- <sect1 id="WorkunitFilesWritten">
- <title>WorkunitFilesWritten</title>
- <para><emphasis
- role="bold">STD.System.Workunit.WorkunitFilesWritten <indexterm>
- <primary>STD.System.Workunit.WorkunitFilesWritten</primary>
- </indexterm>
- <indexterm>
- <primary>System.Workunit.WorkunitFilesWritten</primary>
- </indexterm>
- <indexterm>
- <primary>Workunit.WorkunitFilesWritten</primary>
- </indexterm>
- <indexterm>
- <primary>WorkunitFilesWritten</primary>
- </indexterm>
- (</emphasis> <emphasis>
- wuid </emphasis> <emphasis role="bold">)</emphasis></para>
- <informaltable colsep="1" frame="all" rowsep="1">
- <tgroup cols="2">
- <colspec colwidth="80.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><emphasis>wuid</emphasis></entry>
- <entry>A null-terminated string containing the WorkUnit
- IDentifier.</entry>
- </row>
- <row>
- <entry>Return:<emphasis> </emphasis></entry>
- <entry>WorkunitFilesWritten returns a DATASET value.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <para>The <emphasis role="bold">WorkunitFilesWritten </emphasis>function
- returns a DATASET with this format:</para>
- <programlisting>EXPORT WsFileRead := RECORD
- STRING name{MAXLENGTH(256)};
- STRING10 graph;
- STRING cluster{MAXLENGTH(64)};
- UNSIGNED4 kind;
- END;</programlisting>
- <para>Each record in the returned dataset specifies a file written by the
- workunit.</para>
- <para>Example:</para>
- <programlisting format="linespecific">OUTPUT(STD.System.Workunit.WorkunitFilesWritten('W20070308-164946'));
- /* produces results that look like this
- 'rttest::testfetch','graph1','thor','0'
- */</programlisting>
- </sect1>
|