Questions tagged [background-processing]

3 questions
2
votes
1 answer

Execute a Task after specific time, even if app is in background on iOS using Swift

I have a VPN-Client app that asks the user to pause the connection for 5, 30, and 120 Minutes. The user probably leaves the application to do some work outside of my app in this period, therefore I need to Reconnect the app even if is in the…
1
vote
1 answer

Can MATLAB create a Future for executing a function without ever invoking a function on a worker?

MATLAB's parallel.Future class provides useful functionality for making responsive code that avoids blocking user input and is able to cancel previously requested tasks when new input means they are no longer required. However the only top-level…
Will
  • 1,835
  • 10
  • 21
0
votes
0 answers

Running Windows Forms and ASP.NET Core Web API together in .NET 6

I'm using .NET 6. Solution View As seen in the diagram, I'm using a certain architecture. My application connects to SQL from both a project named IBKS 2.0 (Windows Forms) and IBKSWebAPI (ASP.NET Core Web API) projects, and performs operations. If I…