47
48
// GetOrCreateChasmExecution mocks base method.
49
>
func (m *MockCache) GetOrCreateChasmExecution(ctx context.Context, shardContext interfaces.ShardContext, namespaceID namespace.ID, execution *common.WorkflowExecution, archetypeID chasm.ArchetypeID, lockPriority locks.Priority) (interfaces.WorkflowContext, interfaces.ReleaseWorkflowContextFunc, error) {
cache_mock.go
50
>
m.ctrl.T.Helper()
51
>
ret := m.ctrl.Call(m, "GetOrCreateChasmExecution", ctx, shardContext, namespaceID, execution, archetypeID, lockPriority)
52
>
ret0, _ := ret[0].(interfaces.WorkflowContext)
53
>
ret1, _ := ret[1].(interfaces.ReleaseWorkflowContextFunc)
54
>
ret2, _ := ret[2].(error)
55
>
return ret0, ret1, ret2
56
>
}
57
58
// GetOrCreateChasmExecution indicates an expected call of GetOrCreateChasmExecution.