87
88
// BackFillEvents mocks base method.
89
>
func (m *MockExecutableTask) BackFillEvents(ctx context.Context, remoteCluster string, workflowKey definition.WorkflowKey, startEventId, startEventVersion, endEventId, endEventVersion int64, newRunId string) error {
executable_task_mock.go
90
>
m.ctrl.T.Helper()
91
>
ret := m.ctrl.Call(m, "BackFillEvents", ctx, remoteCluster, workflowKey, startEventId, startEventVersion, endEventId, endEventVersion, newRunId)
92
>
ret0, _ := ret[0].(error)
93
>
return ret0
94
>
}
95
96
// BackFillEvents indicates an expected call of BackFillEvents.
97
>
func (mr *MockExecutableTaskMockRecorder) BackFillEvents(ctx, remoteCluster, workflowKey, startEventId, startEventVersion, endEventId, endEventVersion, newRunId any) *gomock.Call {
executable_task_mock.go
98
>
mr.mock.ctrl.T.Helper()
99
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BackFillEvents", reflect.TypeOf((*MockExecutableTask)(nil).BackFillEvents), ctx, remoteCluster, workflowKey, startEventId, startEventVersion, endEventId, endEventVersion, newRunId)
100
>
}
101
102
// Cancel mocks base method.