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

1
vote
4answers
412 views

Alternative to delayed job for simple cron task on heroku?

In my Rails app on Heroku, I want to execute a simple block of code at 5 specific times in the future (each about a day apart), down to the second. Is there a good way to do this without a background ...
10
votes
3answers
206 views

Not calling didBecomeActive if background task expires

Here is the situation: I am picking a large video using imagepicker. Obviously the picker will take a bit of time to compress the video. So to ease user experience I have enabled background task for ...
0
votes
3answers
222 views

How to run Asynchronous service call with NSOperationQueue or performSelectorInBackground

I am using NSURLConnection asynchronous call to load data from server.While calling service method with performSelectorInBackground,The method gets called but NSURLConnection does not provide any ...
0
votes
3answers
245 views

How to upload 10 images to server from iPhone app?

I am new to iPhone. I have created an iPhone application. In this application, i have to give one option to upload more than one image to server. Suppose if the user closed the application also, it ...
0
votes
2answers
19 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 ...
0
votes
2answers
31 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
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.
0
votes
2answers
146 views

Perform 2 background tasks simultaneous with jQuery and Ajax

updated my question below I made a script where a user can import large amounts of data. After the form is submitted and the data validated I add 2 background tasks: 1 is a script that imports all ...
0
votes
2answers
119 views

Automatic background updates via HTTP on iPad

I'm creating an iPad application and I require following functionality: Whenever the application is running (eg. in background or foreground), make a periodical (eg. once an hour) check to some ...
0
votes
2answers
72 views

App doesn't close, always remains in Suspended mode while usage of background task in c#/xaml windows store app

I am developing an app. Which uses live tiles with background task (as WinRT Component) as I want to updates tile with time trigger. I have noticed that if I set permission of lock screen to ON and ...
0
votes
2answers
225 views

Random Background image doesn't work in chrome?

I'm trying to make random background. background:url(images/background/background-image.php) no-repeat fixed; background-size: 100%; it works in firefox, safari and IE, but it doesn't work in ...
0
votes
2answers
146 views

how php script will run in background after a form has been submitted even if log out from a/c

I am doing a mass mailer project. Everything is going fine but the problem is that I have a form. After submit I am retrieving mass email id from the database (around 3000 emails). I have given 3 sec ...
0
votes
2answers
210 views

web app on mobiles with phonegap

I have a web application (chat room) in html + javascript that basically sends requests to the server every 5 seconds to check for new messages. It already works on mobile but there are 2 main ...
0
votes
2answers
168 views

passthru doesn't work in Xampp 1.7.5

I have installed Xampp 1.7.5 in my linux system (Fedora 10). I have a requirement in which a PHP script has to run in the background. I am using this passthru: <?php passthru("/usr/bin/php ...
0
votes
2answers
174 views

Output files not created running python script in background

I'm very new to python and have over-extended myself. I've hacked together a script which polls a JSON input stream from Twitter using cURL and converts it to a CSV file. The script works perfectly ...
0
votes
2answers
220 views

problem when starting a job within a remote CredSSP call

So from machine X i'm connecting to Y with Creds A as CredSSP, then i'm passing through Cred B, and i want to start a job on machine Y with Cred B. Though i can RDP into machine Y as X , and ...
0
votes
2answers
375 views

How to backup mysql database while application is running?

What is the prefer way to generate mysql backup while application is running ? I want to provide functionality to admin to take backup of database at the same time when other admin using the same ...
0
votes
2answers
583 views

Background thread Tomcat Struts2

I have a web application using struts2 and tomcat 6 as a server. I have to do some logic that is in a jar file, but this take some time to finish. That's why I want to send the data from the execute ...
-1
votes
2answers
203 views

Send text message without show message composer or in bckground in iphone

Hi is it possible to send text message in background..?My new requirement is to send SMS if there is no internet connection . I am trying MFMessageViewComposer but it shows the pop up view. How can ...
-1
votes
2answers
329 views

How do I make my app run in background on the iPhone?

How can I create an iPhone app that runs in the background and receives data from a web service and produces push notifications?

1 2 3 4