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

Method _get

src/state/log.cpp:449–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447
448
449Future<Option<Entry>> LogStorageProcess::_get(const string& name)
450{
451 Option<Snapshot> snapshot = snapshots.get(name);
452
453 if (snapshot.isNone()) {
454 return None();
455 }
456
457 return snapshot->entry;
458}
459
460
461Future<bool> LogStorageProcess::set(

Callers

nothing calls this directly

Calls 3

NoneClass · 0.85
getMethod · 0.45
isNoneMethod · 0.45

Tested by

no test coverage detected