Uses of Class
org.apache.zookeeper.server.Request
-
Packages that use Request Package Description org.apache.zookeeper.server ZooKeeper server theory of operationorg.apache.zookeeper.server.persistence org.apache.zookeeper.server.quorum org.apache.zookeeper.server.util -
-
Uses of Request in org.apache.zookeeper.server
Fields in org.apache.zookeeper.server declared as Request Modifier and Type Field Description static Request
Request. requestOfDeath
Methods in org.apache.zookeeper.server with parameters of type Request Modifier and Type Method Description void
ZKDatabase. addCommittedProposal(Request request)
maintains a list of last committedLog or so committed requests.boolean
ZKDatabase. append(Request si)
append to the underlying transaction logstatic void
ZooTrace. logRequest(org.slf4j.Logger log, long mask, char rp, Request request, java.lang.String header)
protected void
PrepRequestProcessor. pRequest(Request request)
This method will be called inside the ProcessRequestThread, which is a singleton, so there will be a single thread calling this code.protected void
PrepRequestProcessor. pRequest2Txn(int type, long zxid, Request request, org.apache.jute.Record record, boolean deserialize)
This method will be called inside the ProcessRequestThread, which is a singleton, so there will be a single thread calling this code.void
FinalRequestProcessor. processRequest(Request request)
void
PrepRequestProcessor. processRequest(Request request)
void
RequestProcessor. processRequest(Request request)
void
SyncRequestProcessor. processRequest(Request request)
void
UnimplementedRequestProcessor. processRequest(Request request)
void
ZooKeeperServer. submitRequest(Request si)
-
Uses of Request in org.apache.zookeeper.server.persistence
Methods in org.apache.zookeeper.server.persistence with parameters of type Request Modifier and Type Method Description boolean
FileTxnSnapLog. append(Request si)
append the request to the transaction logs -
Uses of Request in org.apache.zookeeper.server.quorum
Subclasses of Request in org.apache.zookeeper.server.quorum Modifier and Type Class Description class
LearnerSyncRequest
Fields in org.apache.zookeeper.server.quorum declared as Request Modifier and Type Field Description Request
Leader.Proposal. request
Methods in org.apache.zookeeper.server.quorum with parameters of type Request Modifier and Type Method Description void
CommitProcessor. commit(Request request)
void
ObserverZooKeeperServer. commitRequest(Request request)
Unlike a Follower, which sees a full request only during the PROPOSAL phase, Observers get all the data required with the INFORM packet.void
CommitProcessor. processRequest(Request request)
void
FollowerRequestProcessor. processRequest(Request request)
void
ObserverRequestProcessor. processRequest(Request request)
Simply queue the request, which will be processed in FIFO order.void
ProposalRequestProcessor. processRequest(Request request)
void
ReadOnlyRequestProcessor. processRequest(Request request)
void
SendAckRequestProcessor. processRequest(Request si)
Leader.Proposal
Leader. propose(Request request)
create a proposal and send it out to all the members -
Uses of Request in org.apache.zookeeper.server.util
Methods in org.apache.zookeeper.server.util with parameters of type Request Modifier and Type Method Description static byte[]
SerializeUtils. serializeRequest(Request request)
-