| 861 | |
| 862 | |
| 863 | Future<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 { |