MCPcopy Create free account
hub / github.com/apache/mesos / fill

Function fill

src/log/consensus.cpp:863–879  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

861
862
863Future<Action> fill(
864 size_t quorum,
865 const Shared<Network>& network,
866 uint64_t proposal,
867 uint64_t position)
868{
869 FillProcess* process =
870 new FillProcess(
871 quorum,
872 network,
873 proposal,
874 position);
875
876 Future<Action> future = process->future();
877 spawn(process, true);
878 return future;
879}
880
881} // namespace log {
882} // namespace internal {

Callers 6

checkedMethod · 0.85
fillMethod · 0.85
coalesceFunction · 0.85
foreachFunction · 0.85
coalesceFunction · 0.85
foreachFunction · 0.85

Calls 2

spawnFunction · 0.50
futureMethod · 0.45

Tested by

no test coverage detected