1233
1234
// ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent mocks base method.
1235
>
func (m *MockMutableState) ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent(arg0 int64, arg1 *history.HistoryEvent, arg2 string) (*persistence.RequestCancelInfo, error) {
mutable_state_mock.go
1236
>
m.ctrl.T.Helper()
1237
>
ret := m.ctrl.Call(m, "ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent", arg0, arg1, arg2)
1238
>
ret0, _ := ret[0].(*persistence.RequestCancelInfo)
1239
>
ret1, _ := ret[1].(error)
1240
>
return ret0, ret1
1241
>
}
1242
1243
// ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent indicates an expected call of ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent.
1244
>
func (mr *MockMutableStateMockRecorder) ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent(arg0, arg1, arg2 any) *gomock.Call {
mutable_state_mock.go
1245
>
mr.mock.ctrl.T.Helper()
1246
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplyRequestCancelExternalWorkflowExecutionInitiatedEvent), arg0, arg1, arg2)
1247
>
}
1248
1249
// ApplySignalExternalWorkflowExecutionFailedEvent mocks base method.