| 447 | |
| 448 | |
| 449 | Future<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 | |
| 461 | Future<bool> LogStorageProcess::set( |