44
45
// GetSingleWorkflowHistoryPaginatedIteratorExclusive mocks base method.
46
>
func (m *MockHistoryPaginatedFetcher) GetSingleWorkflowHistoryPaginatedIteratorExclusive(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
47
>
m.ctrl.T.Helper()
48
>
ret := m.ctrl.Call(m, "GetSingleWorkflowHistoryPaginatedIteratorExclusive", ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion)
49
>
ret0, _ := ret[0].(collection.Iterator[*HistoryBatch])
50
>
return ret0
51
>
}
52
53
// GetSingleWorkflowHistoryPaginatedIteratorExclusive indicates an expected call of GetSingleWorkflowHistoryPaginatedIteratorExclusive.
54
>
func (mr *MockHistoryPaginatedFetcherMockRecorder) GetSingleWorkflowHistoryPaginatedIteratorExclusive(ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion any) *gomock.Call {
remote_history_paginated_fetcher_mock.go
55
>
mr.mock.ctrl.T.Helper()
56
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSingleWorkflowHistoryPaginatedIteratorExclusive", reflect.TypeOf((*MockHistoryPaginatedFetcher)(nil).GetSingleWorkflowHistoryPaginatedIteratorExclusive), ctx, remoteClusterName, namespaceID, workflowID, runID, startEventID, startEventVersion, endEventID, endEventVersion)
57
>
}
58
59
// GetSingleWorkflowHistoryPaginatedIteratorInclusive mocks base method.