673
674
// ReplicateHistoryEvents mocks base method.
675
>
func (m *MockEngine) ReplicateHistoryEvents(ctx context.Context, workflowKey definition.WorkflowKey, baseExecutionInfo *workflow.BaseExecutionInfo, versionHistoryItems []*history0.VersionHistoryItem, historyEvents [][]*history.HistoryEvent, newEvents []*history.HistoryEvent, newRunID string) error {
engine_mock.go
676
>
m.ctrl.T.Helper()
677
>
ret := m.ctrl.Call(m, "ReplicateHistoryEvents", ctx, workflowKey, baseExecutionInfo, versionHistoryItems, historyEvents, newEvents, newRunID)
678
>
ret0, _ := ret[0].(error)
679
>
return ret0
680
>
}
681
682
// ReplicateHistoryEvents indicates an expected call of ReplicateHistoryEvents.
683
>
func (mr *MockEngineMockRecorder) ReplicateHistoryEvents(ctx, workflowKey, baseExecutionInfo, versionHistoryItems, historyEvents, newEvents, newRunID any) *gomock.Call {
engine_mock.go
684
>
mr.mock.ctrl.T.Helper()
685
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReplicateHistoryEvents", reflect.TypeOf((*MockEngine)(nil).ReplicateHistoryEvents), ctx, workflowKey, baseExecutionInfo, versionHistoryItems, historyEvents, newEvents, newRunID)
686
>
}
687
688
// ReplicateVersionedTransition mocks base method.