| 11660 | |
| 11661 | |
| 11662 | Future<Nothing> Master::apply(Slave* slave, const Offer::Operation& operation) |
| 11663 | { |
| 11664 | CHECK_NOTNULL(slave); |
| 11665 | |
| 11666 | return allocator->updateAvailable(slave->id, {operation}) |
| 11667 | .onReady(defer(self(), &Master::_apply, slave, nullptr, operation)); |
| 11668 | } |
| 11669 | |
| 11670 | |
| 11671 | void Master::_apply( |
no test coverage detected