58
59
// GetSingleWorkflowHistoryPaginatedIteratorInclusive mocks base method.
60
>
func (m *MockHistoryPaginatedFetcher) GetSingleWorkflowHistoryPaginatedIteratorInclusive(ctx context.Context, remoteClusterName string, namespaceID namespace.ID, workflowID, runID string, startEventID, startEventVersion, endEventID, endEventVersion int64) collection.Iterator[*HistoryBatch] {
remote_history_paginated_fetcher_mock.go
61
>
m.ctrl.T.Helper()
62
>
ret := m.ctrl.Call(m, "GetSingleWorkflowHistoryPaginatedIteratorInclusive", ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion)
63
>
ret0, _ := ret[0].(collection.Iterator[*HistoryBatch])
64
>
return ret0
65
>
}
66
67
// GetSingleWorkflowHistoryPaginatedIteratorInclusive indicates an expected call of GetSingleWorkflowHistoryPaginatedIteratorInclusive.
68
>
func (mr *MockHistoryPaginatedFetcherMockRecorder) GetSingleWorkflowHistoryPaginatedIteratorInclusive(ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion any) *gomock.Call {
remote_history_paginated_fetcher_mock.go
69
>
mr.mock.ctrl.T.Helper()
70
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSingleWorkflowHistoryPaginatedIteratorInclusive", reflect.TypeOf((*MockHistoryPaginatedFetcher)(nil).GetSingleWorkflowHistoryPaginatedIteratorInclusive), ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion)
71
>
}