201
202
// RecordWorkflowExecutionStarted mocks base method.
203
>
func (m *MockVisibilityStore) RecordWorkflowExecutionStarted(ctx context.Context, request *InternalRecordWorkflowExecutionStartedRequest) error {
visibility_store_mock.go
204
>
m.ctrl.T.Helper()
205
>
ret := m.ctrl.Call(m, "RecordWorkflowExecutionStarted", ctx, request)
206
>
ret0, _ := ret[0].(error)
207
>
return ret0
208
>
}
209
210
// RecordWorkflowExecutionStarted indicates an expected call of RecordWorkflowExecutionStarted.
211
>
func (mr *MockVisibilityStoreMockRecorder) RecordWorkflowExecutionStarted(ctx, request any) *gomock.Call {
visibility_store_mock.go
212
>
mr.mock.ctrl.T.Helper()
213
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordWorkflowExecutionStarted", reflect.TypeOf((*MockVisibilityStore)(nil).RecordWorkflowExecutionStarted), ctx, request)
214
>
}
215
216
// UpsertWorkflowExecution mocks base method.