org.systinet.wasp.admin
Class ServiceBindingPerformanceLog

java.lang.Object
  extended byorg.systinet.wasp.admin.ServiceBindingPerformanceLog
All Implemented Interfaces:
java.io.Serializable

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

Service binding performance record.

Since:
4.0
See Also:
Serialized Form
Component:
Mgmt-Services

Field Summary
 long average
          The fastest dispatch time (miliseconds).
 long fastest
          The fastest dispatch time (miliseconds).
 int hits
          Number of requests.
 long last
          Last request dispatch time (miliseconds).
 long lastRequestTimestamp
          Time of the last dispatch.
 long slowest
          The longest dispatch time (miliseconds).
 long total
          Total dispatch time (miliseconds).
 
Constructor Summary
ServiceBindingPerformanceLog()
          Default constructor.
 
Method Summary
 void reset()
          Reset record to initial state.
 java.lang.String toString()
          Returns a string representation of the object.
 void update(long last)
          Update record on incomming request.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

last

public long last
Last request dispatch time (miliseconds).


slowest

public long slowest
The longest dispatch time (miliseconds).


fastest

public long fastest
The fastest dispatch time (miliseconds).


average

public long average
The fastest dispatch time (miliseconds).


total

public long total
Total dispatch time (miliseconds).


hits

public int hits
Number of requests.


lastRequestTimestamp

public long lastRequestTimestamp
Time of the last dispatch.

Constructor Detail

ServiceBindingPerformanceLog

public ServiceBindingPerformanceLog()
Default constructor.

Method Detail

reset

public void reset()
Reset record to initial state.


update

public void update(long last)
Update record on incomming request.


toString

public java.lang.String toString()
Returns a string representation of the object.

Returns:
a string representation of the object.