Tagged Questions
The interruptions tag has no wiki summary.
28
votes
18answers
2k views
Do you have a physical “developer busy” indicator?
At my workplace, it has been suggested that each developer is given the opportunity to indicate to his peers that he is busy and cannot be disturbed. This would be done in order to ensure that you ...
12
votes
12answers
478 views
Managing interruptions with increased seniority
As developers advance in seniority, they are more frequently the "go-to" person for questions from business people, other developers, and other teams.
As we know, interruptions have a devastating ...
4
votes
8answers
1k views
Java, replacement for infinite loops?
I am making a program that shows cellular growth through an array. I have gotten it so when I press the start button, the array updates every 10 seconds in a while(true){} loop. The problem with that ...
1
vote
1answer
214 views
Getting a reference to the current boost::thread/interrupting the main thread
I am trying to get a reference to the main boost::thread of execution, so that I can interrupt it.
However, boost::thread doesn't seem to supply any way of doing this.
I have searched on the ...
1
vote
2answers
74 views
Can NSUserDefaults be used for pausing the application during a phone call?
Friends,
currently I dont have iphone to test and using Simulator for testing purposes. I am Just curious to know whether an application continues to run even after a phone call.. here i have no ...
0
votes
0answers
17 views
Android media interruptions
Im implementing a simple media-player in Andoir and I wonder what kind of interruptions you should handle. I know a few like:
Phone calls
Audiofocus (2.2 and later)
Audio becomes noisy (disconnect ...
0
votes
2answers
197 views
how to handle ios call interruptions in background
I can handle call interruption using beginInterruption and endInterruption in the foreground application but when my application is in the background, how should I handle the call interruption?
0
votes
2answers
140 views
Differentiate if the app became inactive because the home button being pressed or an incomming phone call
I know that whenever the app becomes inactive, the UIApplicationWillResignActiveNotification local notification will be posted. In the opposite suituation, the UIApplicationDidBecomeActiveNotification ...