GraphLab Project

graphlab.library.event
Interface EventDispatcher

Type Parameters:
VertexType - Type of the vertex associated with the graph which uses this dispatcher.
EdgeType - Type of the edge associated with the graph which uses this dispatcher.
All Known Implementing Classes:
AlgorithmAnimator

public interface EventDispatcher

EventDispatcher is designed to receive notification of algorithm events. One who implements this class may take different decision on different types of Event object.

Author:
Omid Aladini

Method Summary
 Event dispatchEvent(Event ae)
          Should take reactions (possibly to the gui) upon call by the algorithm.
 

Method Detail

dispatchEvent

Event dispatchEvent(Event ae)
Should take reactions (possibly to the gui) upon call by the algorithm.

Parameters:
ae - Event object.

GraphLab Project