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
{{ message }}
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
Current implementation of creating actions is blocking:
def action[T](name: String)(action: T => ActionResult[T]): ActionField[T]
"save" or "delete" actions could potentially communicate with DB so there'll be nice if they could use async API. This could be better approach for some usecases:
def action[T](name: String)(action: T => Future[ActionResult[T]]): ActionField[T]
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Current implementation of creating actions is blocking:
"save" or "delete" actions could potentially communicate with DB so there'll be nice if they could use async API. This could be better approach for some usecases:
The text was updated successfully, but these errors were encountered: