1262
1263
// ApplySignalExternalWorkflowExecutionInitiatedEvent mocks base method.
1264
>
func (m *MockMutableState) ApplySignalExternalWorkflowExecutionInitiatedEvent(arg0 int64, arg1 *history.HistoryEvent, arg2 string) (*persistence.SignalInfo, error) {
mutable_state_mock.go
1265
>
m.ctrl.T.Helper()
1266
>
ret := m.ctrl.Call(m, "ApplySignalExternalWorkflowExecutionInitiatedEvent", arg0, arg1, arg2)
1267
>
ret0, _ := ret[0].(*persistence.SignalInfo)
1268
>
ret1, _ := ret[1].(error)
1269
>
return ret0, ret1
1270
>
}
1271
1272
// ApplySignalExternalWorkflowExecutionInitiatedEvent indicates an expected call of ApplySignalExternalWorkflowExecutionInitiatedEvent.
1273
>
func (mr *MockMutableStateMockRecorder) ApplySignalExternalWorkflowExecutionInitiatedEvent(arg0, arg1, arg2 any) *gomock.Call {
mutable_state_mock.go
1274
>
mr.mock.ctrl.T.Helper()
1275
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplySignalExternalWorkflowExecutionInitiatedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplySignalExternalWorkflowExecutionInitiatedEvent), arg0, arg1, arg2)
1276
>
}
1277
1278
// ApplySnapshot mocks base method.