PKDPlugin.AbstractJessPlugin Class
A convenient class that plugins may inherit from. If they do, they must override the Export method as well as fill the coreEventHandlerPairList with CoreEventHandlerPairs in the constructor

Access: Public
Base Classes: ShadowFact
Implemented interfaces: IJessPlugin
  Members Description  
    coreEventHandlerPairList    
    AbstractJessPlugin A. The constructor is a good place to specify the event handlers you've created to handle specific core events. You should store these in the coreEventHandlerPairList as PKDPlugin.CoreEventHandlerPair(s) B. Normally, you will want to extend the constructor in the derived class to lauch a thread. This thread should write incomming data to a custom field, and this data should be used by CreateExportData Suppose you have a method: public void Run() then add to constructor: System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart( Run )); thread.Start();

 
    RegisterEventHandler    
    UnregisterEventHandler