Rest ...args: []// In your model
const data = await getSoftwareInfosWithCancel();
// Cancel if needed
getSoftwareInfosWithCancel.cancel();
// Check if active
if (getSoftwareInfosWithCancel.isActive()) {
console.log('Request in progress');
}
Cancel any in-flight request
Get the current AbortController
Check if there's an active request
Cancellable version of getSoftwareInfos