Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
62 views

I attempted to declare a print background task (PrintSupportExtensionBackGroundTask) in the appx manifest and register it with the system. However, when the foreground application (i.e., the main ...
Jeff325's user avatar
0 votes
1 answer
112 views

I'm working on PSA (Print Support App) development with the following environment: Windows 10 22H2 and Windows 11 SDK 10.0.26100.0. In the appx manifest, I attempted to register a background task ...
Jeff325's user avatar
0 votes
0 answers
245 views

I'm currently working on a project where we need to run background tasks, specifically, making periodic API calls. After some research, I came across the react-native-background-fetch library. It ...
Tayna Lopes's user avatar
0 votes
1 answer
49 views

I am using Expo Push Notifications in my app to implement a WhatsApp-like calling functionality. I've used a custom sound, and it plays perfectly. But the problem is when I wanna stop it from the JS ...
Sonet Adhikary's user avatar
0 votes
0 answers
100 views

I am uploading small files to Firebase Storage, approximately 276KB a piece. The app can choose to do a small handful of these uploads per day from the background. The desired behavior is that ...
Program232323's user avatar
0 votes
0 answers
31 views

We have implemented BGAppRefreshTask in our iOS Swift project. If the device's background app refresh is off, then below line of code is not throwing any error. Ideally it should throw ...
Navin Samuel's user avatar
0 votes
1 answer
105 views

I am trying to send an email with a Django background task. But the problem is that when I run python manage.py process_tasks nothing happens. I am just stuck in part where it looks like it is running ...
Explants's user avatar
1 vote
2 answers
1k views

When following the documentation here https://reactnative.dev/docs/headless-js-android and trying to create a simple background task, everything seems to work properly ( compilation and building is ...
JohnP's user avatar
  • 100
0 votes
2 answers
328 views

I'm building an application which involves a task queue from django-background-tasks. The issue that I'm facing is that I can't seem to start the queue automatically and have to manually run ...
xl3ehindTim's user avatar
1 vote
1 answer
63 views

I've installed my AS on external SSD (where programs are didn't matter before but maybe it's crucial now). I'm a student so all I make is simple, not too demanding (and outright primitive), so 2374 ...
Curious Newbie's user avatar
0 votes
0 answers
241 views

I am trying to upload a file to S3, authenticated by AWS Cognito, automatically from the background even when the app is closed. So this is my AppDelegate Code: import BackgroundTasks class ...
Davidtjx's user avatar
0 votes
0 answers
102 views

How do I keep the web socket connection active even though it is in the background of the application? Even though I am outside the application, I still want to receive messages sent by the web socket ...
anastasya's user avatar
1 vote
0 answers
588 views

I’m working on implementing a background task in my iOS app using BGAppRefreshTask. I’ve followed all the steps to set it up, but the background task did not work for the background and terminated ...
serhanaksut's user avatar
0 votes
1 answer
120 views

I am trying to send a notification using Awesome notification plug in whenever a background task is successfully completed using Workmanager plug-in. Having the Workmanager work on iOS is a pain, but ...
user1204563's user avatar
0 votes
0 answers
64 views

I created a out-of-process background task in which I download a HLS stream(m3u/m3u8) by using a LibVLCSharp library. Platform is UWP I have two different processes app and background task. App is ...
Denys's user avatar
  • 25
1 vote
1 answer
436 views

I've been struggling with issues related to FCM tokens for a while, and I would really appreciate it if someone could explain how it works. The Firebase token tells the notification server which ...
Andy550's user avatar
  • 11
1 vote
0 answers
41 views

Sure, here is a clearer version of the text in English: The provided code shows a FastAPI middleware implementation, which performs an operation with the HTTP response details before returning the ...
João Pedro Zimmermann's user avatar
1 vote
0 answers
110 views

We were trying to enable screen share feature in a video conference. It need to run a service in the background. So using this package enabled the feature, but when changed the 'targetSdkVersion' ...
Inquisitive Owl's user avatar
1 vote
0 answers
36 views

I need to make an app that shows phone features on its own in a showroom. App will demonstrate about phone and phone will be usable with other apps installed. Whenever User quits the app and finished ...
Muhtar's user avatar
  • 1,718
1 vote
2 answers
76 views

From a UWP app I start the following UWP background task using BackgroundTaskBuilder: namespace Background.UWP { public sealed class BackgroundTask : IBackgroundTask { private ...
Bernd Morgeneyer's user avatar
0 votes
1 answer
94 views

From a UWP application I start this background task: namespace Background.UWP { public sealed class BackgroundTask : IBackgroundTask { private WatchLoop _watchLoop; public ...
Bernd Morgeneyer's user avatar
1 vote
0 answers
1k views

This is one of my first posts ever. When I'm stuck I usually just hit my head against a wall, but today I'm asking for help. I've got a ReactNative app built using Expo which does some realtime ...
taylormahony's user avatar
0 votes
0 answers
24 views

I have an API, which will call 10 functions inside it. Now these 10 functions can take up more than 5-10 min and these functions need to run one be one. To achieve this, I am using backgroundTask ...
Punit Tiwari's user avatar
1 vote
0 answers
458 views

I need to deal with the current issue : in my frontend (streamlit), I'd like to get a file (such as excel), send it to my backend (with FastAPI). The backend will work with a BackgroundTasks during ...
Nicolas's user avatar
  • 103
1 vote
0 answers
500 views

I'm working on an app that needs to process cached location data in the background periodically. While the task usually completes in less than 30 seconds, it could potentially be battery- and network-...
ConfusedByCode's user avatar
4 votes
1 answer
3k views

I want to execute some background task in Flutter when the app is not in opened state. It is either in background or in terminated state. The requirement is that i want to fetch the device location ...
Adnan's user avatar
  • 59
2 votes
1 answer
1k views

My ultimate goal is to write code that only triggers other servers when calling an endpoint and waits for data from a specific channel in Redis to come in. I don't want to know external server's ...
Care's user avatar
  • 39
2 votes
0 answers
48 views

I need to run a persistent background task, which speaks if a new message comes in to inform the user. Till now i couldn't find any "legal" way to make that happen. Apple has pretty strict ...
stacktrace9000's user avatar
1 vote
1 answer
153 views

I have a function that I wish to run as background task and that I add on the endpoint shown below. Using the return value I poll on a second endpoint for the status which gets updated in the function ...
Christoph Zangerle's user avatar
0 votes
1 answer
249 views

I’ve spent a significant number of hours trying to figure this out and I think I am missing something. This is regarding .NET Core 6/8 and an ASP.Net pipeline; the glitch is with the DI’s scopes and ...
Zee Grinch's user avatar
1 vote
0 answers
927 views

I have a flutter project that contains some native code, in this case I have a background task using BGTaskScheduler (using native swift), ok now the problem is that the task is never executed and ...
DavidIjsud's user avatar
1 vote
0 answers
381 views

For android I created startStask function to start my background task with BackgroundFetch from 'react-native-background-fetch' like this : const startStask = async () => { try { console.log('...
Lili Wgn's user avatar
2 votes
1 answer
966 views

I'm trying to set up background HTTP upload requests (syncing files from the user's phone to a server) that trigger periodically in my Swift app. I don't have strict requirements on when this runs (it ...
idolize's user avatar
  • 6,722
2 votes
0 answers
491 views

folks. In my ios app with SwiftUI, I ma trying to implement fetch data in background in order to update my app with fresh data from the Back End. In order to do it, I am trying to implement it in the ...
Demetrius's user avatar
1 vote
1 answer
896 views

I'm developing an application in C# MVC and I want to execute multiple background tasks each at different time intervals. I already have a service that inherits the class BackgroundService. I already ...
Lenny's user avatar
  • 49
0 votes
0 answers
747 views

Based on documentation from here Using background tasks to update your app I've implemented a background task in my AppDelegate to print "Hello World - Performing background task" when app ...
Kikoanno's user avatar
  • 111
2 votes
1 answer
102 views

In JavaFX in my controller after clicking on Play button starting method 'createTTV()' creating nested TreeTableView(This treetableview will be even larger, but I don't want to paste too much ...
pawchi's user avatar
  • 143
4 votes
1 answer
2k views

I've configured background task in plist.info with an identifier updateCountry and Background Modes fetch and processing as capability. I have locationManager with these functions: func ...
GMarkoslansvka's user avatar
0 votes
2 answers
242 views

I am currently working on a Flutter application that involves Bluetooth device discovery in the background. To achieve this, I have tried using the flutter_bluetooth_serial package in combination with ...
Ghous Muhammad's user avatar
0 votes
1 answer
113 views

I upload a text file into my system. It consists of the file content as byte array. Then this content is parsed and converted in a C# class object with many relations. I need to move this upload ...
Mihai Socaciu's user avatar
0 votes
0 answers
335 views

I am working on a sensor tracking feature in a React Native application. At first I was running it in foreground and that is working perfectly but I want to track also during screen lock, Hence, I am ...
casabre's user avatar
  • 188
-1 votes
1 answer
340 views

I'm building a BGProcessingTask that may take more then 5 minutes to complete. The processing task runs on a Singleton object that can be accessed (or even started) when the app is on foreground. When ...
Or Rapaport's user avatar
2 votes
0 answers
306 views

I am having some trouble with uploading HealthKit data to AWS S3 in the background. As of now, when I click on the button to beginBackgroundUpdates the data is uploaded as expected. When I go off the ...
Vishal Moorjani's user avatar
-1 votes
1 answer
3k views

Do anyone had problem recently with Fast API BackgroundTask? Name: fastapi Version: 0.99.1 In the begin of the year I used and it was very fast to implement it. But now I tried everything and it runs ...
Julia Santi's user avatar
3 votes
1 answer
418 views

I created a background service to process items in a queue as demonstrated here: Queued Background Task Unlike the example, items are added to the queue via a Web API method that looks something like ...
DanO's user avatar
  • 1,013
3 votes
1 answer
8k views

Im trying to create a background task, mainly for android, which permit me get the current location of the user every x seconds and send it by a socket to a server socket. I read the documentation ...
Ignacio Miguez's user avatar
2 votes
1 answer
1k views

My background task, implemented as per Apple's documentation, runs only once or twice instead of running continuously one after another. Seeking assistance to resolve this problem. AppDelegate import ...
Akhter hussain Dar's user avatar
-1 votes
1 answer
215 views

I have a .NET Core application that uses a ThreadPool. Each thread in the thread pool executes logic that talks to the database and makes HTTPS calls. The ThreadPool.QueueUserWorkItem(ProcessQueue); ...
Md Monjur Ul Hasan's user avatar
1 vote
0 answers
181 views

When I working with my app with React-Native and my emulator is Android API 33 , I have a issue with a task-background. More specifically when i working with task a tracking location, I really used 2 ...
IceCream's user avatar
0 votes
1 answer
587 views

I need scheduled track play in my react native app. If scheduled time app is kill , how to play track that time? I tried React-native-background task and react native fetch libraries but not work ...
Coder's user avatar
  • 1

1
2 3 4 5
15