1135
1136
// ApplyChildWorkflowExecutionStartedEvent mocks base method.
1137
>
func (m *MockMutableState) ApplyChildWorkflowExecutionStartedEvent(arg0 *history.HistoryEvent, arg1 *clock.VectorClock) error {
mutable_state_mock.go
1138
>
m.ctrl.T.Helper()
1139
>
ret := m.ctrl.Call(m, "ApplyChildWorkflowExecutionStartedEvent", arg0, arg1)
1140
>
ret0, _ := ret[0].(error)
1141
>
return ret0
1142
>
}
1143
1144
// ApplyChildWorkflowExecutionStartedEvent indicates an expected call of ApplyChildWorkflowExecutionStartedEvent.
1145
>
func (mr *MockMutableStateMockRecorder) ApplyChildWorkflowExecutionStartedEvent(arg0, arg1 any) *gomock.Call {
mutable_state_mock.go
1146
>
mr.mock.ctrl.T.Helper()
1147
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplyChildWorkflowExecutionStartedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplyChildWorkflowExecutionStartedEvent), arg0, arg1)
1148
>
}
1149
1150
// ApplyChildWorkflowExecutionTerminatedEvent mocks base method.