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.

learn more… | top users | synonyms

0
votes
1answer
41 views

Implementing Long-Running Background Tasks in iOS

my client asks me to develop some app that periodically retrieves the user location & the phone battery status, and then send them to our backend server for data analysis, then feed back by push ...
0
votes
3answers
18 views

How can I show a specific activity when application enters foreground from background?

I have an application with several activities.One of them is Login activity and this activity defined as MAIN in my app in manifest: <activity ...
1
vote
0answers
16 views

Beep not working when phonegap app is in background on iOS

I’m working on the iOS version of my phonegap-based navigation app. My app tracks the user’s location around a walk route using GPS and alerts the user using audio (navigator.notification.beep) and ...
-1
votes
1answer
27 views

Best solution for background process execution initiated from web server [closed]

I have a situation where I want to run some background processes independently of my Apache server. The processes are long running, and should continue even after the user navigates away from the ...
0
votes
1answer
38 views

Start-transcript in a background process

is there a way to handle start-transcript in a background process? I have a script launched in background. almost everything works fine, except logging with start-transcript? in fact, it creates my ...
0
votes
0answers
13 views

Background-Task for Countdown / Timer in Android activityView

I created a countdown timer with a good loocking output in mm:ss So if I switch to the activityView befor and come back to the activity with the timer, everything looks good but;-): timer is still ...
0
votes
2answers
20 views

Activity switch and Async Android

I have 2 activities: MainActivity which is associated with main.xml layout (app "Home" screen) and AboutActivity which is associated with about.xml layout (app "About" screen). While in ...
2
votes
1answer
47 views

Running a php script as a background process using unix

I am trying to run the php script (below) named daemon.php as a back ground process using unix. #!/usr/bin/php <?php $count = 0; while(true){ $count = $count + 1; ...
1
vote
1answer
30 views

How to handle and display asynchronous data returned in a background thread in the iOS UI

I am new to using background threads to display data in the iOS UI. I am now using the Parse SDK for all of my backend data management. It seems all of the Parse methods return data asynchronously ...
0
votes
0answers
26 views

Exec - shell_exec - translate output to progress bar

I have two functions, one runs a thread in the background with exec() and returns output function runThread($cmd, $priority = 0){ if($priority){ exec(sprintf('nohup nice -n %s %d > ...
0
votes
0answers
38 views

Android load contacts code optimization

I've written an activity which loads all contacts of the phone and displays it at once in a ListView. The thing is, it takes time to load 400+ contacts and this is not very user friendly. Can anyone ...
0
votes
1answer
42 views

Can I automatically launch my application without user tapping local Notification in iOS? [closed]

I want to be able to launch the app when a timer, which the user sets, goes to zero. Will this keep my app from being accepted in the the app store? Example: The user sets a timer and exits the ...
2
votes
2answers
71 views

How to run Background process in ASP.Net web Application

I want to execute some of the function in my web application without intimating the user about the running process just like background process in windows application. I want to trigger background ...
0
votes
1answer
24 views

Metro Application Issue with BackgroundTask NOT triggered

Without going into too much detail, here's the basic scenario. I have a Metro App that downloads files off a server. Once the files are downloaded, a ListView is updated in the UI with it's basic ...
3
votes
1answer
43 views

NodeJS Background jobs never execute, loop forever

I have a module that starts some background jobs in NodeJS (the jobs are HTTP requests), here is a simplified version of it: var util = require('util'), EE = require('events').EventEmitter, ...
0
votes
1answer
33 views

Writing a DelayedJob custom job to run script and then destroy object

I've been trying to figure this out for a long time, and can't figure it out. I am using DelayedJob in my Rails app in order to run a script to fill out some forms on a website via a Mechanize ...
1
vote
1answer
30 views

how to run php as background process

I have a problem when executing the PHP files as background process. I have two PHP file as follow : index.php <?php $cmd = "php cmdReadReport.php"; if (substr(php_uname(), 0, 7) == ...
0
votes
1answer
40 views

Run an android application in background on a button click

I am developing an simple android application ( studying ). The application will send a "I am online" detail to the server at the interval of 15 mins. The application view consists of only one button. ...
2
votes
2answers
33 views

How to persist communication after shutting down/turning on the device?

I'm developing an iOS application to keep track of certain system information from the device. The application is supposed to keep sending information even if it is in background. Everything is ...
0
votes
0answers
22 views

Wake up app from background when wifi conectivity

I need my app to wake up when the phone has wifi conection so it can upload pictures to a server. I've checked the background modes and the closest mode I could choose is voip, but that wouldnt be ...
1
vote
1answer
30 views

Python Flask running background functions returning values

I have a Python Flask application that I'm planning to use as a monitor for a robot that drives around (using Player/Stage). Now I'm able to connect with the robot and request information and so on. ...
0
votes
1answer
40 views

PHP background process with && in command

I'm aware that we can run background process with the following: exec("doTask.php $arg1 $arg2 $arg3 >/dev/null 2>&1 &"); (Taken from: Run PHP Task Asynchronously) However I have a ...
0
votes
0answers
31 views

iOS XMPP app running in background

I have a XMPP chat application in iOS. Right now the group chat gets disconnected as soon as the app is minimized because the socket connection is terminated. So i ve decided that i ll register the ...
0
votes
1answer
76 views

ApplicationDidEnterBackground does not fire method

I am trying to implement background task to my app. Before I implement, I wanted to give a simple example as shown below. I just put a counter and would like to see whether it counts or not. However, ...
1
vote
1answer
52 views

Android Application: application should launch as service

I am developing an application that can send location details to a web service in .net I am able to generate co-ordinates and send it to webservice. The problem is I want the user to enter username ...
0
votes
0answers
64 views

SignalR run as background process in windows phone 8

Is this possible to remain the connection open in background in Windows Phone 8? Is this supported?
0
votes
2answers
48 views

How can I have an NSTimer going throughout the entire time the user is in the app?

How can I have an NSTimer going throughout the entire time the user is in the app? I want to be able to change view controllers and perform different functions, all while a timer is going on int the ...
18
votes
6answers
259 views

Best way to Synchronise write-to and write-back in Android?

I am working on a Point of Sale application that needs to be very good syncing mechanism. We have Magento Database.The android device have SQLite local Db. Now we need to sync in the following way: ...
0
votes
2answers
32 views

How much time do I have after applicationDidEnterBackground invoked?

I want to send a timestamp to a remote server, and wait for the callback of success, then store the timestamp locally, if remote server did not respond. Is it something that I could put into ...
0
votes
0answers
29 views

Touch events and expensive calculations in Cocos2d on iOS

In my Cocos2d iOS game the user can drag their finger around the screen to aim a line (think of a pool cue). Whenever the app receives a touchMoved event a relatively long-running (5-30 ms) ...
0
votes
1answer
104 views

Send Geolocation in background service [Titanium]

I'm creating an app for Android and iOS with titanium which sends a new Geolocation to a server every 5 seconds for as long as the server runs. On iOS however the app stops sending those locations ...
0
votes
0answers
53 views

Listing iphone apps running in background and its network statistics

I am trying to write an app that will basically monitor other apps installed in the iPhone for network usage. I am struck with 2 major problems. 1) Need to list the apps that are in the background ...
-2
votes
0answers
24 views

check time and run my application android?

Hi friends i have developed an android app to get location on background and save it on server its working good but, i need to get location only at 9am to 5pm. i am just an starter for coding i use if ...
0
votes
3answers
49 views

Using another thread for “networking” , in Android

I am developing an Android application and when it launches : 1) I make an HTTP Request to my server to send a small JSON file. 2) Open a webView to show a URL. When the server is running properly ...
-1
votes
1answer
514 views

iPhone background app - why does whatsapp work and skype doesn't [closed]

I'm trying to wrap my head around how background apps work on iPhone. Specifically, Skype is not able to stay connected when the app is in the background, so you won't be able to receive ...
2
votes
1answer
45 views

IOS - Executing a Finite-Length Task in the Background

I am writing an IOS app which sync data. I need sync service to run when app is in background as well. So I've written this piece of code in the place where I am uploading data. - ...
0
votes
0answers
51 views

Background process in Audio Play back agent

I have seen some windows phone apps are using Audio Playback agent to keep some continuous processing or keep session alive with server instead playing some song and this stops working when you play ...
2
votes
1answer
62 views

Running TriggerIO iOS app with screen locked?

I have a fitness app that guides users through a workout, but in order to do that, the app must remain active even while in the background. Specifically, this is crucial with our new audio release, ...
0
votes
1answer
27 views

Rails background task on post request, returns json on completion

I'm sure that someone has solved this problem before, I'm keen to learn from your experiences. Architecture: Server A is a web server Server B is an API server Server C is a datasource User fills ...
0
votes
1answer
35 views

NotifyIcon not showing complete message

I'm using a NotifyIcon for displaying some information regarding a background process-result of my C# Windows application. But sometimes it does not show the complete message. It hides some of the ...
0
votes
1answer
29 views

How to run background php process on MAMP?

I'm trying to trigger a background php process on MAMP with this code: exec("php /Users/Joe/sandbox/getnew.php?artist=".$artistID." > error_log &"); or: shell_exec("nohup /usr/bin/php ...
1
vote
4answers
76 views

How to get gps location once for 5 mins android?

hi there can anybody give me a sample code for get location for every five minutes please i have tried and i can get location once by cliking on button, but i need it to be displayed once for five ...
0
votes
0answers
38 views

CakePHP high production time

when I use just a controller and a view to display some links (no database access) it takes about 50ms to load the page, but when it comes to database access (my model uses a database here) it takes ...
0
votes
3answers
293 views

Running iOS App in background for more than 10 minutes

enter code hereI am trying to allow my app to run in the background for more that 10 minutes, according to this and my good below. (I want to use long background running to keep track of a location, ...
-1
votes
2answers
22 views

how do you place code in a background thread [closed]

I am build an App that downloads a file and while that download is running I want to have a simple graphic that rotates like an animated Gif used to do in the old days. So I have code in place to ...
0
votes
0answers
66 views

Ios VOIP background mode without real time conversation

My next application will be a chat application(the whatsApp killer :) ) using SIP to deliver all data(text, recorded sound, images, videos ..) and it will include the VOIP in a future version. Can i ...
0
votes
1answer
25 views

How to ask pesmision from user to activate the background task?

I have developed an Windows 8 application that uses the background task to retrieve data and activate live tiles feature. It all works fine but I need to go to the application settings and manually ...
0
votes
2answers
83 views

How to automatically update database after regular time intervals in asp.net mvc

I want to automatically update my database after regular time intervals, what will be more suitable process to do this task ? My project is in ASP.net MVC.
1
vote
1answer
56 views

Capistrano “do nohup python” works, “do nohup ruby” does not

I am getting very frustrated trying to write a fairly simple Cap script that will stop and start some daemon processes I have running on remote boxes. essentially, run "for I in {1..40}; do nohup ...
0
votes
1answer
55 views

Parsing and Storing Data in Realtime

I've built a bandwidth monitor app which successfully uploads data to parse.com using the following: testObject.put("dataOutput", String.valueOf(mStartTX)); However the data is always stored as ...

1 2 3 4 5 16