Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request: Basic Background Execution #185

Open
kylewill opened this issue Feb 2, 2025 · 1 comment
Open

Request: Basic Background Execution #185

kylewill opened this issue Feb 2, 2025 · 1 comment

Comments

@kylewill
Copy link

kylewill commented Feb 2, 2025

Llama 3.3 suggested this code to keep alive as long as the OS will allow:

var backgroundTaskId = UIBackgroundTaskInvalid

func applicationDidEnterBackground(_ application: UIApplication) {
    backgroundTaskId = application.beginBackgroundTask(withName: "MyBackgroundTask") {
        // Expiration handler, called when time runs out or system terminates the task
        self.endBackgroundTask()
    }
    
    // Perform your background task here
    DispatchQueue.main.asyncAfter(deadline: .now() + 120) { // Run for up to 2 minutes
        // Your code to keep the connection alive goes here
        self.endBackgroundTask()
    }
}

func endBackgroundTask() {
    if backgroundTaskId != UIBackgroundTaskInvalid {
        UIApplication.shared.endBackgroundTask(backgroundTaskTaskInvalid
    }
}

It also suggested using URLSession for more guarantees but that would be more complicated.

I mostly want to ask and be able to come back to the response without losing the connection.

@relink2013
Copy link

I would have to agree with this. A majority of the time I’d prefer to let it answer in the ba ground while I switch apps to do something else.

For the longest time I actually thought this was an error on my backend. Then I realized it’s just that Enchanted breaks the connection when it’s not in the foreground (atleast on iOS).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants