com.softwareag.tamino.db.api.response
Interface TServerTime

All Known Implementing Classes:
TServerTimeImpl

public interface TServerTime

TServerTime is the interface for acces of time information of a Tamino database. You can acces both the time that the Tamino database server has spent in user mode (i.e. executing user requests) as well as the time spent in kernel mode (i.e. executing system calls that result from user requests). Both values are accumulative times, i.e. since the database was started. The values returned are the total times for all users, not the individual times for each user.

Version:
$Revision: 1.3 $
Author:
Stefan Liebig

Method Summary
 java.lang.String getKernelTime()
          Get the kernel time.
 java.lang.String getUserTime()
          Gets the user time.
 

Method Detail

getUserTime

java.lang.String getUserTime()
Gets the user time. The time is returned as a string with the following format

<timeValue> " " <timeUnits>, e.g. "873645817 100ns"

Returns:
teh user time.

getKernelTime

java.lang.String getKernelTime()
Get the kernel time. The time is returned as a string with the following format

<timeValue> " " <timeUnits>, e.g. "873645817 100ns"

Returns:
the kernel time.


Copyright (c) 2013 Software AG. All Rights Reserved.