Class DataflowEvent

java.lang.Object
kieker.analysis.architecture.recovery.events.DataflowEvent

public class DataflowEvent
extends java.lang.Object
Since:
1.3.0
  • Constructor Summary

    Constructors 
    Constructor Description
    DataflowEvent​(GenericElementEvent source, GenericElementEvent target, kieker.model.analysismodel.execution.EDirection direction, java.time.Duration duration)
    Create a new dataflow event between two operations or between one operation and one storage.
  • Method Summary

    Modifier and Type Method Description
    kieker.model.analysismodel.execution.EDirection getDirection()  
    java.time.Duration getDuration()  
    GenericElementEvent getSource()  
    GenericElementEvent getTarget()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DataflowEvent

      public DataflowEvent​(GenericElementEvent source, GenericElementEvent target, kieker.model.analysismodel.execution.EDirection direction, java.time.Duration duration)
      Create a new dataflow event between two operations or between one operation and one storage.
      Parameters:
      source - source element, either an operation or a storage
      target - target element, either an operation or a storage
      direction - dataflow direction
      duration - duration of the dataflow (is zero in static analysis)
  • Method Details