MCPcopy Create free account
hub / github.com/Migorithm/rustiful-backend / commit

Method commit

library/src/services/unit_of_work.rs:52–58  ·  view source on GitHub ↗
(mut self)

Source from the content-addressed store, hash-verified

50 }
51
52 pub async fn commit(mut self) -> ApplicationResult<()> {
53 // To drop uow itself!
54
55 self._commit_hook().await?;
56
57 self._commit().await
58 }
59 async fn _commit(&mut self) -> ApplicationResult<()> {
60 let mut executor = self.executor.write().await;
61

Callers 10

create_boardMethod · 0.45
edit_boardMethod · 0.45
add_commentMethod · 0.45
edit_commentMethod · 0.45
handle_outboxMethod · 0.45
test_event_handlerMethod · 0.45
test_event_handler2Method · 0.45
_commitMethod · 0.45
test_unit_of_workFunction · 0.45

Calls 2

_commit_hookMethod · 0.80
_commitMethod · 0.80

Tested by 4

test_event_handlerMethod · 0.36
test_event_handler2Method · 0.36
test_unit_of_workFunction · 0.36