All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.stapi.graphsystem.messaging.event.DynamicGraphUpdatedEvent Maven / Gradle / Ivy

package ai.stapi.graphsystem.messaging.event;

import ai.stapi.graph.graphElementForRemoval.GraphElementForRemoval;
import ai.stapi.graph.Graph;
import ai.stapi.identity.UniqueIdentifier;
import java.util.List;

public class DynamicGraphUpdatedEvent extends AggregateGraphUpdatedEvent {

  private String eventName;

  private DynamicGraphUpdatedEvent() {
  }

  public DynamicGraphUpdatedEvent(
      String eventName,
      UniqueIdentifier identity,
      List graphElementsForRemoval
  ) {
    super(identity, graphElementsForRemoval);
    this.eventName = eventName;
  }

  public DynamicGraphUpdatedEvent(
      String eventName,
      UniqueIdentifier identity,
      Graph synchronizedGraph
  ) {
    super(identity, synchronizedGraph);
    this.eventName = eventName;
  }

  public DynamicGraphUpdatedEvent(
      String eventName,
      UniqueIdentifier identity,
      Graph synchronizedGraph,
      List graphElementsForRemoval
  ) {
    super(identity, synchronizedGraph, graphElementsForRemoval);
    this.eventName = eventName;
  }

  public String getEventName() {
    return eventName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy