229
230
// RecordWorkflowExecutionStarted mocks base method.
231
>
func (m *MockVisibilityManager) RecordWorkflowExecutionStarted(ctx context.Context, request *RecordWorkflowExecutionStartedRequest) error {
visibility_manager_mock.go
232
>
m.ctrl.T.Helper()
233
>
ret := m.ctrl.Call(m, "RecordWorkflowExecutionStarted", ctx, request)
234
>
ret0, _ := ret[0].(error)
235
>
return ret0
236
>
}
237
238
// RecordWorkflowExecutionStarted indicates an expected call of RecordWorkflowExecutionStarted.
239
>
func (mr *MockVisibilityManagerMockRecorder) RecordWorkflowExecutionStarted(ctx, request any) *gomock.Call {
visibility_manager_mock.go
240
>
mr.mock.ctrl.T.Helper()
241
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordWorkflowExecutionStarted", reflect.TypeOf((*MockVisibilityManager)(nil).RecordWorkflowExecutionStarted), ctx, request)
242
>
}
243
244
// UpsertWorkflowExecution mocks base method.