76
77
// ConflictResolveWorkflowExecution mocks base method.
78
>
func (m *MockWorkflowContext) ConflictResolveWorkflowExecution(ctx context.Context, shardContext ShardContext, conflictResolveMode persistence0.ConflictResolveWorkflowMode, resetMutableState MutableState, newContext WorkflowContext, newMutableState MutableState, currentContext WorkflowContext, currentMutableState MutableState, resetWorkflowTransactionPolicy TransactionPolicy, newWorkflowTransactionPolicy, currentTransactionPolicy *TransactionPolicy) error {
workflow_context_mock.go
79
>
m.ctrl.T.Helper()
80
>
ret := m.ctrl.Call(m, "ConflictResolveWorkflowExecution", ctx, shardContext, conflictResolveMode, resetMutableState, newContext, newMutableState, currentContext, currentMutableState, resetWorkflowTransactionPolicy, newWorkflowTransactionPolicy, currentTransactionPolicy)
81
>
ret0, _ := ret[0].(error)
82
>
return ret0
83
>
}
84
85
// ConflictResolveWorkflowExecution indicates an expected call of ConflictResolveWorkflowExecution.
86
>
func (mr *MockWorkflowContextMockRecorder) ConflictResolveWorkflowExecution(ctx, shardContext, conflictResolveMode, resetMutableState, newContext, newMutableState, currentContext, currentMutableState, resetWorkflowTransactionPolicy, newWorkflowTransactionPolicy, currentTransactionPolicy any) *gomock.Call {
workflow_context_mock.go
87
>
mr.mock.ctrl.T.Helper()
88
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ConflictResolveWorkflowExecution", reflect.TypeOf((*MockWorkflowContext)(nil).ConflictResolveWorkflowExecution), ctx, shardContext, conflictResolveMode, resetMutableState, newContext, newMutableState, currentContext, currentMutableState, resetWorkflowTransactionPolicy, newWorkflowTransactionPolicy, currentTransactionPolicy)
89
>
}
90
91
// CreateWorkflowExecution mocks base method.