Parsing Engine

Uses of Class
danbikel.switchboard.NumberedObject

Packages that use NumberedObject
danbikel.parser Provides the core framework of this extensible statistical parsing engine. 
danbikel.switchboard Provides classes to implement a distributed client-server environment, with a central switchboard responsible for assigning clients to servers and for doling out objects to clients for processing. 
 

Uses of NumberedObject in danbikel.parser
 

Methods in danbikel.parser with parameters of type NumberedObject
 void EventCountsConsumer.consume(NumberedObject obj)
           
 void EventCountsConsumer.consumeForDumper(NumberedObject obj)
          A helper method used by EventCountsConsumer.consume(NumberedObject) to perform consumption of objects that are periodicially written to an output file by a separate “dumper” thread.
 

Uses of NumberedObject in danbikel.switchboard
 

Methods in danbikel.switchboard that return NumberedObject
 NumberedObject Switchboard.nextObject(int clientId)
           
 NumberedObject SwitchboardRemote.nextObject(int clientId)
          Gets the next object for the specified client; returns null if there is not currently an object to be processed.
 

Methods in danbikel.switchboard with parameters of type NumberedObject
 void Consumer.consume(NumberedObject numObj)
          Tells this consumer to consume the specified object that has been processed by one of the switchboard's clients.
 void Switchboard.putObject(int clientId, NumberedObject obj, long millis)
           
 void SwitchboardRemote.putObject(int clientId, NumberedObject obj, long millis)
          Sends a processed object back to the switchboard object.
 


Parsing Engine

Author: Dan Bikel.