Uses of Class
org.gridbus.broker.persistence.State

Packages that use State
org.gridbus.broker.event   
org.gridbus.broker.farming.common   
org.gridbus.broker.persistence   
org.gridbus.broker.persistence.db   
 

Uses of State in org.gridbus.broker.event
 

Methods in org.gridbus.broker.event with parameters of type State
 void ScheduleListener.scheduleEvent(State s)
          Scheduling Event
 void BrokerEventListener.scheduleEvent(State s)
           
 

Uses of State in org.gridbus.broker.farming.common
 

Methods in org.gridbus.broker.farming.common that return State
 State GridbusFarmingEngine.getCurrentState()
          Returns the current state of the farming engine as a "State" object.
 

Uses of State in org.gridbus.broker.persistence
 

Methods in org.gridbus.broker.persistence that return State
static State Recovery.recoverFromDB(java.lang.Object brokerID)
          Recovers the broker state from a database.
static State Recovery.recover(java.lang.Object brokerID)
          Recovers the stored state of the Broker
 State Reader.readBrokerInstance(java.lang.Object brokerID)
          Same as the read method without an argument, but reads the instance with the given ID
 State Reader.read(java.lang.Object brokerID)
          Reads all the data related to the invocation of the broker with the given brokerID from storage and returns the FarmingEngine as a State object.
 

Methods in org.gridbus.broker.persistence with parameters of type State
 void Writer.saveBrokerInstance(State s)
          Saves the global broker properties and broker instance state to persistent storage.
 void Writer.saveEvent(State s, java.lang.Object event, java.lang.Object source, java.lang.Object brokerID)
          Saves the
 void Writer.save(State s)
          Saves the entire broker state to persistent storage.
 

Uses of State in org.gridbus.broker.persistence.db
 

Methods in org.gridbus.broker.persistence.db that return State
 State DBReader.readBrokerInstance(java.lang.Object brokerID)
           
 State DBReader.read(java.lang.Object brokerID)
           
 

Methods in org.gridbus.broker.persistence.db with parameters of type State
 void DBWriter.saveBrokerInstance(State s)
           
 void DBWriter.saveEvent(State s, java.lang.Object eventID, java.lang.Object sourceID, java.lang.Object brokerID)
          Saves this event to the state table, which keeps track of event history
 void DBWriter.save(State s)