Copyright @ 2001 SAP. All Rights Reserved.

com.sap.util.monitor.jarm
Class TaskOverview

java.lang.Object
  |
  +--com.sap.util.monitor.jarm.TaskOverview
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
TaskOverviewExt

public class TaskOverview
extends java.lang.Object
implements java.io.Serializable

Structure contains the data to be shown for one task.

Currently one request is made up by one task. The taskxxx fields of the structure are redundant. They contain the same values than the corresponding fields in RequestOverview.

The fields are public, to allow faster access on them. Unused String fields could be null or space. Timestamps are in 'ms' as returned by System.currentTimeMillis(). Time (duration) is in 'ms', data in bytes. Undefined / not provided values for time and data is indicated by ConfMonitor.UNDEFTIME and ConfMonitor.UNDEFDATA.

See Also:
Serialized Form

Field Summary
 CompSingleOverview[] compOverview
          Information about the components which build up the task; sequence of elements corresponds to call sequence of the components. null if there are no components
 java.lang.String taskName
          taskname
 int taskOutData
          amount of outgoing data
 int taskStatus
          status of task; see ConfMonitor (REQOK, REQCOMPxxx)
 long taskTime
          duration of the task (elapsed)
 long taskTS
          timestamp when task started
 
Constructor Summary
TaskOverview()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

taskName

public java.lang.String taskName
taskname

taskStatus

public int taskStatus
status of task; see ConfMonitor (REQOK, REQCOMPxxx)

taskTS

public long taskTS
timestamp when task started

taskTime

public long taskTime
duration of the task (elapsed)

taskOutData

public int taskOutData
amount of outgoing data

compOverview

public CompSingleOverview[] compOverview
Information about the components which build up the task; sequence of elements corresponds to call sequence of the components. null if there are no components
Constructor Detail

TaskOverview

public TaskOverview()

Copyright @ 2001 SAP. All Rights Reserved.