1305
1306
// ApplyStartChildWorkflowExecutionInitiatedEvent mocks base method.
1307
>
func (m *MockMutableState) ApplyStartChildWorkflowExecutionInitiatedEvent(arg0 int64, arg1 *history.HistoryEvent) (*persistence.ChildExecutionInfo, error) {
mutable_state_mock.go
1308
>
m.ctrl.T.Helper()
1309
>
ret := m.ctrl.Call(m, "ApplyStartChildWorkflowExecutionInitiatedEvent", arg0, arg1)
1310
>
ret0, _ := ret[0].(*persistence.ChildExecutionInfo)
1311
>
ret1, _ := ret[1].(error)
1312
>
return ret0, ret1
1313
>
}
1314
1315
// ApplyStartChildWorkflowExecutionInitiatedEvent indicates an expected call of ApplyStartChildWorkflowExecutionInitiatedEvent.
1316
>
func (mr *MockMutableStateMockRecorder) ApplyStartChildWorkflowExecutionInitiatedEvent(arg0, arg1 any) *gomock.Call {
mutable_state_mock.go
1317
>
mr.mock.ctrl.T.Helper()
1318
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplyStartChildWorkflowExecutionInitiatedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplyStartChildWorkflowExecutionInitiatedEvent), arg0, arg1)
1319
>
}
1320
1321
// ApplyTimerCanceledEvent mocks base method.