You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.then() chains are currently suboptimal. Consider:
auto fut = make_ready_future()
.then(some_callback)
.then(other_callback)
.then(yet_another_callback);
Only the result of the final .then() needs to be truly stateful - the temporary ones used to construct this continuation chain are never going to be used except to feed the singular continuation. There's space for optimization here.
The text was updated successfully, but these errors were encountered:
.then()
chains are currently suboptimal. Consider:auto fut = make_ready_future() .then(some_callback) .then(other_callback) .then(yet_another_callback);
Only the result of the final
.then()
needs to be truly stateful - the temporary ones used to construct this continuation chain are never going to be used except to feed the singular continuation. There's space for optimization here.The text was updated successfully, but these errors were encountered: