stopWatchstopWatch
Measure time intervals
Home > Books > NetKernel API and Services Reference > Accessor Listing > Utility and System Accessors > stopWatch

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:ext:sys

The stopWatch accessor is exported by the urn:org:ten60:netkernel:ext:sys module. Import this module to gain access to the accessor.

Syntax

URI
active:stopWatch

ArgumentRulesDescription
operandMandatory stopWatch document
operatorMandatory stopWatch control document

Example Usage

DPML

<instr>
  <type>org.ten60.ura.util.stopWatch</type>
  <operator>
    <stopWatch>
      <start />
    </stopWatch>
  </operator>
  <target>var:stopwatch</target>
</instr>

<instr>
  <type>org.ten60.ura.util.stopWatch</type>
  <operand>var:stopwatch</operand>
  <operator>
    <stopWatch>
      <stop />
    </stopWatch>
  </operator>
  <target>var:stopwatch</target>
</instr>

NetKernel Foundation API

In NKF processes it is usually more convenient to use System.currentTimeMillis()

Purpose

The stopWatch accessor provides a millisecond timer. The stopWatch can be told to start or stop by setting a parameter in an XML fragment passed to the operator parameter.

When the stopWatch is told to start, it returns an XML fragment that captures the current time with millisecond resoution.

<startime>1093848773</startime>

In the first DPML code example, this document is saved in the variable named stopwatch.

When the stopWatch is told to stop, the startime document is passed as the operand parameter. As shown in the second DPML code example, stopWatch returns a duration XML document fragment after terminating the time interval measurement.

<duration>1060</duration>

Operator

The stopWatch accessor is started and stopped by a controlling operator document. The format of the document is either

<stopWatch>
  <start />
</stopWatch>

to start the timer or

<stopWatch>
  <stop />
</stopWatch>

to stop the timer


(C) 2003, 1060 Research Limited
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.