187
188
// RecordWorkflowExecutionClosed mocks base method.
189
>
func (m *MockVisibilityStore) RecordWorkflowExecutionClosed(ctx context.Context, request *InternalRecordWorkflowExecutionClosedRequest) error {
visibility_store_mock.go
190
>
m.ctrl.T.Helper()
191
>
ret := m.ctrl.Call(m, "RecordWorkflowExecutionClosed", ctx, request)
192
>
ret0, _ := ret[0].(error)
193
>
return ret0
194
>
}
195
196
// RecordWorkflowExecutionClosed indicates an expected call of RecordWorkflowExecutionClosed.
197
>
func (mr *MockVisibilityStoreMockRecorder) RecordWorkflowExecutionClosed(ctx, request any) *gomock.Call {
visibility_store_mock.go
198
>
mr.mock.ctrl.T.Helper()
199
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordWorkflowExecutionClosed", reflect.TypeOf((*MockVisibilityStore)(nil).RecordWorkflowExecutionClosed), ctx, request)
200
>
}
201
202
// RecordWorkflowExecutionStarted mocks base method.