44
45
// PartialRefresh mocks base method.
46
>
func (m *MockTaskRefresher) PartialRefresh(ctx context.Context, mutableState interfaces.MutableState, minVersionedTransition *persistence.VersionedTransition, previousPendingChildIds map[int64]struct{}, shouldSkipGeneratingCloseTransferTask bool) error {
task_refresher_mock.go
47
>
m.ctrl.T.Helper()
48
>
ret := m.ctrl.Call(m, "PartialRefresh", ctx, mutableState, minVersionedTransition, previousPendingChildIds, shouldSkipGeneratingCloseTransferTask)
49
>
ret0, _ := ret[0].(error)
50
>
return ret0
51
>
}
52
53
// PartialRefresh indicates an expected call of PartialRefresh.
54
>
func (mr *MockTaskRefresherMockRecorder) PartialRefresh(ctx, mutableState, minVersionedTransition, previousPendingChildIds, shouldSkipGeneratingCloseTransferTask any) *gomock.Call {
task_refresher_mock.go
55
>
mr.mock.ctrl.T.Helper()
56
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PartialRefresh", reflect.TypeOf((*MockTaskRefresher)(nil).PartialRefresh), ctx, mutableState, minVersionedTransition, previousPendingChildIds, shouldSkipGeneratingCloseTransferTask)
57
>
}
58
59
// Refresh mocks base method.