1348
1349
// ApplyTimerStartedEvent mocks base method.
1350
>
func (m *MockMutableState) ApplyTimerStartedEvent(arg0 *history.HistoryEvent) (*persistence.TimerInfo, error) {
mutable_state_mock.go
1351
>
m.ctrl.T.Helper()
1352
>
ret := m.ctrl.Call(m, "ApplyTimerStartedEvent", arg0)
1353
>
ret0, _ := ret[0].(*persistence.TimerInfo)
1354
>
ret1, _ := ret[1].(error)
1355
>
return ret0, ret1
1356
>
}
1357
1358
// ApplyTimerStartedEvent indicates an expected call of ApplyTimerStartedEvent.
1359
>
func (mr *MockMutableStateMockRecorder) ApplyTimerStartedEvent(arg0 any) *gomock.Call {
mutable_state_mock.go
1360
>
mr.mock.ctrl.T.Helper()
1361
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplyTimerStartedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplyTimerStartedEvent), arg0)
1362
>
}
1363
1364
// ApplyTransientWorkflowTaskScheduled mocks base method.