215
216
// RecordWorkflowExecutionClosed mocks base method.
217
>
func (m *MockVisibilityManager) RecordWorkflowExecutionClosed(ctx context.Context, request *RecordWorkflowExecutionClosedRequest) error {
visibility_manager_mock.go
218
>
m.ctrl.T.Helper()
219
>
ret := m.ctrl.Call(m, "RecordWorkflowExecutionClosed", ctx, request)
220
>
ret0, _ := ret[0].(error)
221
>
return ret0
222
>
}
223
224
// RecordWorkflowExecutionClosed indicates an expected call of RecordWorkflowExecutionClosed.
225
>
func (mr *MockVisibilityManagerMockRecorder) RecordWorkflowExecutionClosed(ctx, request any) *gomock.Call {
visibility_manager_mock.go
226
>
mr.mock.ctrl.T.Helper()
227
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordWorkflowExecutionClosed", reflect.TypeOf((*MockVisibilityManager)(nil).RecordWorkflowExecutionClosed), ctx, request)
228
>
}
229
230
// RecordWorkflowExecutionStarted mocks base method.