Class Event.MigrationOp.InvokedMeasurement

  • Enclosing class:
    Event.MigrationOp

    public static final class Event.MigrationOp.InvokedMeasurement
    extends java.lang.Object
    Invoked measurement for a migration op.

    Indicates which origins/sources were executed while doing a migration operation.

    • Constructor Summary

      Constructors 
      Constructor Description
      InvokedMeasurement​(boolean oldInvoked, boolean newInvoked)
      Construct a new invoked measurement.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean wasNewInvoked()
      Check if the new method was invoked.
      boolean wasOldInvoked()
      Check if the old method was invoked.
      • Methods inherited from class java.lang.Object

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

      • InvokedMeasurement

        public InvokedMeasurement​(boolean oldInvoked,
                                  boolean newInvoked)
        Construct a new invoked measurement.
        Parameters:
        oldInvoked - true if old was invoked
        newInvoked - true if new was invoked
    • Method Detail

      • wasOldInvoked

        public boolean wasOldInvoked()
        Check if the old method was invoked.
        Returns:
        true if the old method was invoked
      • wasNewInvoked

        public boolean wasNewInvoked()
        Check if the new method was invoked.
        Returns:
        true if the new method was invoked