| 76 | |
| 77 | private: |
| 78 | void discard(const Future<Option<MasterInfo>>& future) |
| 79 | { |
| 80 | // Discard the promise holding this future. |
| 81 | discardPromises(&promises, future); |
| 82 | } |
| 83 | |
| 84 | Option<MasterInfo> leader; // The appointed master. |
| 85 | set<Promise<Option<MasterInfo>>*> promises; |
nothing calls this directly
no test coverage detected