461
462
// ListConcreteExecutions mocks base method.
463
>
func (m *MockExecutionManager) ListConcreteExecutions(ctx context.Context, request *ListConcreteExecutionsRequest) (*ListConcreteExecutionsResponse, error) {
data_interfaces_mock.go
464
>
m.ctrl.T.Helper()
465
>
ret := m.ctrl.Call(m, "ListConcreteExecutions", ctx, request)
466
>
ret0, _ := ret[0].(*ListConcreteExecutionsResponse)
467
>
ret1, _ := ret[1].(error)
468
>
return ret0, ret1
469
>
}
470
471
// ListConcreteExecutions indicates an expected call of ListConcreteExecutions.
472
>
func (mr *MockExecutionManagerMockRecorder) ListConcreteExecutions(ctx, request any) *gomock.Call {
data_interfaces_mock.go
473
>
mr.mock.ctrl.T.Helper()
474
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListConcreteExecutions", reflect.TypeOf((*MockExecutionManager)(nil).ListConcreteExecutions), ctx, request)
475
>
}
476
477
// PutReplicationTaskToDLQ mocks base method.