| 123 | // then you can override this behavior with `always_transfer`. |
| 124 | template <typename T> |
| 125 | Future<T> Transfer(Future<T> future) { |
| 126 | return DoTransfer(std::move(future), false); |
| 127 | } |
| 128 | |
| 129 | // Overload of Transfer which will always schedule callbacks on new threads even if the |
| 130 | // future is finished when the callback is added. |
nothing calls this directly
no test coverage detected