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

Method start

src/state/log.cpp:243–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

241
242
243Future<Nothing> LogStorageProcess::start()
244{
245 if (starting.isSome()) {
246 return starting.get();
247 }
248
249 VLOG(2) << "Starting the writer";
250
251 starting = writer.start()
252 .then(defer(self(), &Self::_start, lambda::_1));
253
254 return starting.get();
255}
256
257
258Future<Nothing> LogStorageProcess::_start(

Callers

nothing calls this directly

Calls 5

deferFunction · 0.85
startMethod · 0.65
isSomeMethod · 0.45
getMethod · 0.45
thenMethod · 0.45

Tested by

no test coverage detected