GraphLab Project

graphlab.plugins.main
Class GraphAction

java.lang.Object
  extended by graphlab.platform.core.AbstractAction
      extended by graphlab.plugins.main.GraphAction
All Implemented Interfaces:
Action, Listener

public abstract class GraphAction
extends AbstractAction

Author:
Rouzbeh Ebrahimi

Field Summary
 
Fields inherited from class graphlab.platform.core.AbstractAction
blackboard
 
Constructor Summary
GraphAction(BlackBoard bb)
          constructor
 
Method Summary
 void performAction(java.lang.String eventName, java.lang.Object value)
          this method is the basic structure for performing a job in the AbstractAction structure,But Here we needed more simple structure ;so we defined GraphAction and so there was no need of this signature!
abstract  void performJob(GraphData graphData)
           
 
Methods inherited from class graphlab.platform.core.AbstractAction
disable, enable, getBlackBoard, getLastListenedEventKey, isEnable, keyChanged, listen4Event, setBlackBoard, unListenEvent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GraphAction

public GraphAction(BlackBoard bb)
constructor

Parameters:
bb - the blackboard of the action
Method Detail

performAction

public final void performAction(java.lang.String eventName,
                                java.lang.Object value)
this method is the basic structure for performing a job in the AbstractAction structure,But Here we needed more simple structure ;so we defined GraphAction and so there was no need of this signature!

Specified by:
performAction in interface Action
Specified by:
performAction in class AbstractAction
Parameters:
eventName -
value -

performJob

public abstract void performJob(GraphData graphData)

GraphLab Project