Home
last modified time | relevance | path

Searched refs:LeaderElectionRegInterface (Results 1 – 3 of 3) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/
H A DCoordinationInterface.h108 struct LeaderElectionRegInterface : ClientLeaderRegInterface { struct
113 LeaderElectionRegInterface() {} in LeaderElectionRegInterface() argument
114 LeaderElectionRegInterface(NetworkAddress remote);
115 LeaderElectionRegInterface(INetwork* local);
166 vector<LeaderElectionRegInterface> leaderElectionServers;
H A DCoordination.actor.cpp59 LeaderElectionRegInterface::LeaderElectionRegInterface(NetworkAddress remote) in LeaderElectionRegInterface() function in LeaderElectionRegInterface
67 LeaderElectionRegInterface::LeaderElectionRegInterface(INetwork* local) in LeaderElectionRegInterface() function in LeaderElectionRegInterface
80 leaderElectionServers.push_back( LeaderElectionRegInterface( *s ) ); in ServerCoordinators()
209 ACTOR Future<Void> leaderRegister(LeaderElectionRegInterface interf, Key key) { in leaderRegister()
339 Map<Key, LeaderElectionRegInterface> registerInterfaces;
379 LeaderElectionRegInterface& getInterface(KeyRef key) { in getInterface()
411 ACTOR Future<Void> leaderServer(LeaderElectionRegInterface interf, OnDemandStore *pStore) { in leaderServer()
454 state LeaderElectionRegInterface myLeaderInterface( g_network ); in coordinationServer()
H A DLeaderElection.actor.cpp30 ACTOR Future<Void> submitCandidacy( Key key, LeaderElectionRegInterface coord, LeaderInfo myInfo, U… in submitCandidacy()