225
226
// ReapplyEvents mocks base method.
227
>
func (m *MockWorkflowContext) ReapplyEvents(ctx context.Context, shardContext ShardContext, eventBatches []*persistence0.WorkflowEvents) error {
workflow_context_mock.go
228
>
m.ctrl.T.Helper()
229
>
ret := m.ctrl.Call(m, "ReapplyEvents", ctx, shardContext, eventBatches)
230
>
ret0, _ := ret[0].(error)
231
>
return ret0
232
>
}
233
234
// ReapplyEvents indicates an expected call of ReapplyEvents.
235
>
func (mr *MockWorkflowContextMockRecorder) ReapplyEvents(ctx, shardContext, eventBatches any) *gomock.Call {
workflow_context_mock.go
236
>
mr.mock.ctrl.T.Helper()
237
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReapplyEvents", reflect.TypeOf((*MockWorkflowContext)(nil).ReapplyEvents), ctx, shardContext, eventBatches)
238
>
}
239
240
// RefreshTasks mocks base method.