Interface GraphEventListener<V,E>

All Superinterfaces:
EventListener

public interface GraphEventListener<V,E> extends EventListener
An interface for classes that listen for graph events.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Method called by the process generating a graph event to which this instance is listening.
  • Method Details

    • handleGraphEvent

      void handleGraphEvent(GraphEvent<V,E> evt)
      Method called by the process generating a graph event to which this instance is listening. The implementor of this interface is responsible for deciding what behavior is appropriate.
      Parameters:
      evt - the graph event to be handled