Uses of Interface
org.apache.zookeeper.server.RequestProcessor

Packages that use RequestProcessor
org.apache.zookeeper.server ZooKeeper server theory of operation 
org.apache.zookeeper.server.quorum   
 

Uses of RequestProcessor in org.apache.zookeeper.server
 

Classes in org.apache.zookeeper.server that implement RequestProcessor
 class FinalRequestProcessor
          This Request processor actually applies any transaction associated with a request and services any queries.
 class PrepRequestProcessor
          This request processor is generally at the start of a RequestProcessor change.
 class SyncRequestProcessor
          This RequestProcessor logs requests to disk.
 

Fields in org.apache.zookeeper.server declared as RequestProcessor
protected  RequestProcessor ZooKeeperServer.firstProcessor
           
 

Constructors in org.apache.zookeeper.server with parameters of type RequestProcessor
PrepRequestProcessor(ZooKeeperServer zks, RequestProcessor nextProcessor)
           
SyncRequestProcessor(ZooKeeperServer zks, RequestProcessor nextProcessor)
           
 

Uses of RequestProcessor in org.apache.zookeeper.server.quorum
 

Classes in org.apache.zookeeper.server.quorum that implement RequestProcessor
 class CommitProcessor
          This RequestProcessor matches the incoming committed requests with the locally submitted requests.
 class FollowerRequestProcessor
          This RequestProcessor forwards any requests that modify the state of the system to the Leader.
 class ObserverRequestProcessor
          This RequestProcessor forwards any requests that modify the state of the system to the Leader.
 class ProposalRequestProcessor
          This RequestProcessor simply forwards requests to an AckRequestProcessor and SyncRequestProcessor.
 class SendAckRequestProcessor
           
 

Constructors in org.apache.zookeeper.server.quorum with parameters of type RequestProcessor
CommitProcessor(RequestProcessor nextProcessor, String id, boolean matchSyncs)
           
FollowerRequestProcessor(FollowerZooKeeperServer zks, RequestProcessor nextProcessor)
           
ObserverRequestProcessor(ObserverZooKeeperServer zks, RequestProcessor nextProcessor)
          Constructor - takes an ObserverZooKeeperServer to associate with and the next processor to pass requests to after we're finished.
ProposalRequestProcessor(LeaderZooKeeperServer zks, RequestProcessor nextProcessor)
           
 



Copyright © 2012 The Apache Software Foundation