Created
March 7, 2024 08:37
-
-
Save jchapuis/71a4cf4904c2dbd60453787ef866bb05 to your computer and use it in GitHub Desktop.
Branch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Branch[F[_], TID, Q, R] | |
def prepare(id: TID, query: Q): F[Vote[R]] | |
def commit(id: TID): F[Unit] | |
def abort(id: TID): F[Unit] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment