Skip to main content

Questions tagged [background-process]

A background process is a computer process that runs "behind the scenes" (i.e. in the background) and without user intervention. Typical tasks for these processes include logging, system monitoring, scheduling, and user notification.

background-process
0 votes
1 answer
44 views

trigger a foreground app by a script runnning in background (in same tty, linux)

tui.c: a simple ncurses hello world tui app: // gcc -o tui tui.c -lncurses #include <ncurses.h> int main() { initscr(); // start curses mode printw("Hello, World!&...
melon's user avatar
  • 33
-1 votes
0 answers
25 views

iOS recurrent task in background as core bluetooth peripheral

I would like to publish changes to a characteristic in the peripheral manager with a recurrency of around 1 minute, meaning every minute I would like my iOS device that acts as a BLE peripheral to ...
Clem Housa's user avatar
0 votes
2 answers
54 views

On iOS is there a reliable way to monitor wifi changes in the background?

I'm working on an iOS app where I'm trying to implement a feature that detects when the currently connected wifi network has changed and executes some code in response to that change (nothing huge ...
Michael's user avatar
  • 11
0 votes
0 answers
51 views

How to perform functionality in the Flutter app even if the app is closed?

I make a step counter app in this app when my app is open or open in background it works perfectly but when I close my app the step counting is not working it stops. I have try to perform this using ...
Snehil Tejani's user avatar
1 vote
0 answers
131 views

RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED error in Background Location

I am using background service, with background_location package, but when i try to run the app, I crashed shoeing this error: D/AndroidRuntime(22315): Shutting down VM E/AndroidRuntime(22315): FATAL ...
Garvin Chanderia's user avatar
1 vote
1 answer
54 views

Best way to deploy a worker service with Hangfire in Azure?

So I am developing a worker service with Hangfire. It will have some recurring jobs which will e scheduled and managed by Hangfire. All of this is working great. Now, I want to deploy it in Azure and ...
Khandakar Rashed Hassan's user avatar
0 votes
1 answer
55 views

Can we do background processing in php without using pthread?

Usecase:-I want to download a pdf but it take time approx 2 minute because the size of the pdf is big. so my current page is stucked until the download was completed so,I wanted to perform background ...
Harshit's user avatar
2 votes
0 answers
101 views

Flutter Background Service: Unable to Call Method Channel on Termination State

I'm developing a Flutter application that mutes the phone based on the user's location. I've successfully integrated Google Maps and other necessary components. I'm utilizing the ...
Syed Rehan's user avatar
  • 1,048
0 votes
0 answers
13 views

sys.stdin.readline() in an inittab

I am using sys.stdin.readline() to to hang the execution of a Python script, to keep it persistent. When I put this script in an inittab and it comes time to log into Linux after rebooting, hitting ...
Geremia's user avatar
  • 5,364
0 votes
0 answers
41 views

Can I read sensor data in the background on React Native?

I am trying to develop an application for reading the native accelerometer/sensor readings from a device when the app is either in the background or terminated altogether (ideally at a frequency of 5-...
user25196465's user avatar
0 votes
1 answer
57 views

no queue data inserted in jobs table laravel

hello guys I have a form where user can select multiple images and uploading them all when he submits the form , each image's size is 1 or 2mb ,the request take too long time (pending) due to image's ...
moemen saadeh's user avatar
1 vote
0 answers
88 views

Is the Bull queue in NestJS the best solution for this situation? (best practice)

I have a back-end built with NestJS and MongoDB, where I'm utilizing microservices to communicate with other services. I have a POST endpoint that handles complex logic: First, I retrieve data from ...
imaddine's user avatar
0 votes
1 answer
44 views

what would be efficient way to to some job while waiting for a bash background process

I know how wait and & work but Instead of stalling at Wait Command I want to do some other job meanwhile. For example this is my main code that sleeps for 10 seconds (background process). #!/bin/...
Kaleem Khattak's user avatar
0 votes
0 answers
23 views

How to run multiprocessing inside a backgroundTask in FastAPI? [duplicate]

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
0 votes
0 answers
27 views

Background service current location error in Flutter

I am trying to access currentlocation through background service using workmanager package but it didnot return position. Althought when accessing currentlocation through onpressed it worked fine. ...
Muhammad Awais Shafi's user avatar

15 30 50 per page
1
2 3 4 5
214