Questions tagged [resume]

Starting something again after stopping/pausing it. (DO NOT USE for any topic related to employment or CVs)

Starting something again after stopping/pausing it. Do not use this tag for résumés or CVs.

560 questions
6
votes
5 answers

Android: How to RESUME Fragment class from Notification. NOT create new instance

I want to start a CountDownTimer in a Fragment class, and when the timer hits, say 3 minutes, the fragment class (though the app is in the background) will create a Notification. When the user pushes the notification, the app holding this fragment…
NooberMan
  • 101
  • 1
  • 8
6
votes
1 answer

A program resistent to power/hardware/OS failures

I need to write a program that performs a parallel search in a large space of possible states, with new areas being discovered (and their exploration started) in the process, and exploration of some areas being terminated early as intermediate…
X.C.
  • 391
  • 1
  • 5
6
votes
0 answers

How to pausing and resume a service

I'm an android beginner, and unfortunately I could not find a satisfying answer for my service problem so far. I hope you can help me. I think that my question addresses a common task. My situation is the following: I have implemented my own…
Dan
  • 1,539
  • 12
  • 23
6
votes
4 answers

Resuming interrupted SVN checkout... again

First of all, I know that this question has been asked many times, for example here. However, the accepted answers there do not seem to work in my case. > svn --version svn, version 1.7.6 (r1370777) > svn co https://netmf.svn.codeplex.com/svn…
Etan
  • 17,014
  • 17
  • 89
  • 148
6
votes
1 answer

AFNetworking + Pause/ Resume downloading big files

I need to download large .zip files (up to 800 MB) with my iPad app. I want to resume the download again if it is canceled or if the app is in the background. operation = [[AFHTTPRequestOperation alloc]…
L0rdShrek
  • 73
  • 1
  • 1
  • 7
6
votes
2 answers

Raphaël.js animation resume() fails on set

I have this piece of code (on jsfiddle) var paper = new Raphael('holder', 400, 100); var set = paper.set(); for(var i = 0; i < 10; i++) { var circle = paper.circle((i * 30) + 30, 20, 5); circle.attr({ fill: '#ff0' }); …
dan-lee
  • 14,365
  • 5
  • 52
  • 77
6
votes
2 answers

AFNetworking + big download files + resume downloads

I need to download files > 500 Mo with AFNetworking. Sometimes, the time to download them is > 10 minutes and if the app is in background, the download can't be complete. So I want to try partial downloads. I found a lot of links and this seems to…
alex.bour
  • 2,842
  • 9
  • 40
  • 66
6
votes
1 answer

How to Suspend and Resume Threads in android?

I just noticed that suspend and resume in android threading has been deprecated. What is the work around for this or how can I suspend and resume a thread in android?
rosesr
  • 749
  • 1
  • 7
  • 10
5
votes
1 answer

How to extend CountDownTimer to add pause and resume method?

I trying to extend ConuntDownTimer to add the methods pause and resume in this way: public class CountDown extends CountDownTimer { private long resume; private long millisInFuture; private long countDownInterval; public…
Webman
  • 1,534
  • 3
  • 26
  • 48
5
votes
1 answer

android saving game state

I'm developing a game and i've ran into some questions about saving and resuming the game. Let's say i have 10 animated sprites drawn every frame (which move side to side) and everytime i press the home button or back button and then go back to my…
Jernej
  • 51
  • 2
5
votes
0 answers

http error 403 issue in resuming download from google drive

i was downloading a file of about 400mb shared with me on google drive. I got an unstable internet connection and the file stopped at 94%. When i reconnect to internet and resumes the download, it does not resumes and says "http error 403:…
Shubh
  • 109
  • 7
5
votes
3 answers

How to suspend and resume an application on windows?

Is there any way to suspend an application execution, store its process image to a file, and restore it later (keeping the application as it was at the moment of suspension)? What I want to do is something like an "hibernate" for applications on…
Uruka
  • 51
  • 1
5
votes
1 answer

WCF Streaming and resume options

I have a scenario that I need to implement. Namely, my server needs to implement WCF that would accept large files (500MB - 1GB) and support resuming in case the connection drops for any reason. I was thinking of using WCF streaming for this, but I…
Tomislav Markovski
  • 12,331
  • 7
  • 50
  • 72
5
votes
4 answers

Resume sound in AVAudioPlayer with swift

I am trying to play a clip of sound that can be paused, resumed or stopped. My pause button works, and the action function for this button is shown below. However I cannot get my resume function to work. When I press the resume button no audio is…
JungleBook
  • 123
  • 1
  • 2
  • 7
5
votes
2 answers

Restoring Unity3d Android application with another activity on top

I need the following problem to be resolved: From the UnityPlayerNativeActivity I am starting a standard Android activity (may be mine, may be with an ad from the ad network - nevermind). When the game is being hidden with this activity on top (not…