Class TimingResult

java.lang.Object
java.util.EventObject
org.kuali.rice.krms.framework.engine.result.TimingResult
All Implemented Interfaces:
Serializable, ResultEvent

public class TimingResult extends EventObject implements ResultEvent
An implementation of ResultEvent with start DateTime, end DateTime, and elapsed time in Milliseconds. The Date is formatted using org.joda.time.format.DateTimeFormat pattern of "yyyy-MM-dd HH.mm.ss.SSS"
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Constructor Details

    • TimingResult

      public TimingResult(String description, String type, Object source, ExecutionEnvironment environment, org.joda.time.DateTime start, org.joda.time.DateTime end)
      Constructor
      Parameters:
      description - of the TimingResult
      type - of the TimingResult
      source - of the TimingResult
      environment - ExecutionEnvironment of the TimingResult
      start - org.joda.time.DateTime of the TimingResult
      end - org.joda.time.DateTime of the TimingResult
    • TimingResult

      public TimingResult(String type, Object source, ExecutionEnvironment environment, org.joda.time.DateTime start, org.joda.time.DateTime end)
      Constructor
      Parameters:
      type - of the TimingResult
      source - of the TimingResult
      environment - ExecutionEnvironment of the TimingResult
      start - org.joda.time.DateTime of the TimingResult
      end - org.joda.time.DateTime of the TimingResult
  • Method Details