Questions tagged [delayed-execution]

Delaying the execution of a program or a procedure by a given amount of time, or until the results are explicitly requested.

Delaying the execution of a program or a procedure by a given amount of time, or until the results are explicitly requested.

259 questions
0
votes
2 answers

ANDROID : is it possible to delay onStop?

do you know if it is possible to delay the onStop method once it has been fired? I'm overriding the onStop() method, and I want to add a small delay before it calls super.onStop(). (I have an activity that displays a view -dialog with a surface…
0
votes
0 answers

netTcpBinding data transfer freezes for some time periodically

I have two applications WCF client and WCF server running on same machine. Client calls on server for image data, server prepares few images and gives those images to client and client displays them. Client application make calls to server every…
harik
  • 543
  • 1
  • 5
  • 16
0
votes
3 answers

How can I make a SQL script run after a certain time without waiting for it?

I'm trying to create a SQL script with a delay. I could use: blah blah WAITFOR DELAY '00:30:00' blah blah but using a script like this requires that I sit through the 30 minutes. Leaving the website will cancel the script. The problem is that I…
Levi Johansen
  • 296
  • 2
  • 15
0
votes
1 answer

Workflow Foundation - Pending Timers on Server Restart

I have a workflow built in a way that it has delay activity which causes it to persist, and after delay has expired, a notification is sent. Workflow is exposed via Workflow Services. This works perfect except for the scenarios when the server…
0
votes
1 answer

JavaScript: Initializing inner variable after initializing object

Update: rewriting question because original question had false assumptions (I was running code in a console that had already initialized the variables I thought were undefined). This makes sense: var obj = { 'whichScope': a }; obj.whichScope;…
Micah
  • 21
  • 6
0
votes
1 answer

Why my iPhone app has a delayed loading?

I noticed some iPhone apps give you the title screen instantly. Then there are some apps that gives you a black/blank screen for a brief moment. I have the latter issue, but its lasting about 2 seconds. I would like to display a PNG image (over 200…
AlvinfromDiaspar
  • 5,868
  • 13
  • 63
  • 120
0
votes
1 answer

Xajax and Jquery

I have a page where the pagination is implementated in xajax. Each row has 3 columns for radio button where user can select (see the sample layout attached to figure out). Then when I selected from page 1 and moved to page 2, the value should be…
user1149244
  • 651
  • 4
  • 9
  • 25
0
votes
2 answers

Keydown processes previous character instead of current one

I try to create an MS-Dos emulation window with jquery and ajax. It works well but when I type a word or press enter, the script is one character too late on display (no character displayed on first press then, for each next keydown, it shows the…
Baylock
  • 1,116
  • 4
  • 23
  • 47
0
votes
2 answers

Display delayed with Flexslider 2

I'm working on my own portfolio (which is not complete now), and i'm having issues with Flexslider 2 (by Woothemes). See here : http://www.gaelle-fernandez.fr/Folio2012/#Works If you click on a work (any image), a slickbox will open, with a slider…
Gaelle
  • 564
  • 1
  • 6
  • 25
0
votes
1 answer

No internet connection: method call into another dll takes more than 15 seconds

I'm facing the following issue I just can't explain: I have two dlls (DllA and DllB). When I call the first time from DllA into Dllb "ObjectFromB.aMethod()" everything works fine and fast. However, when I call another method from DllA in DllB…
Dunken
  • 7,909
  • 4
  • 51
  • 76
0
votes
1 answer

Delay between .load() and $(window).bind('load')

I'm having a problem with a delay caused between the completion of: var href = $('.mainNav').data('href'); $('#slideshow').load(href); This calls up a file which only contains an unsorted list and places it as the content of #slideshow. That…
0
votes
3 answers

Decorator storing input in list to call every `n` calls?

How do I write a decorator that stores input for that function in a list and only calls the function after n is stored?
0
votes
1 answer

Delayed save in ActiveRecord

Shortly: is there a standard Rails functionality to mark a model instance for delayed save (e.g. m.delay_save!) and then save all marked models by single call (e.g. DelaysManager.commit!)? Verbosely: Consider use case: I need to update a instance of…
Alexey
  • 8,424
  • 4
  • 55
  • 75
-1
votes
1 answer

swift loop delay not working properly

I am trying to animate an UIImageView to move across the screen. In order to make the motion smooth, I need to use about 60 increments. The code works well for increments 0-10 with each new increment happening after one second pause. However, for…
Delph2
  • 109
  • 1
  • 7
-1
votes
1 answer

PIC12F675 set timer function . What exactly it does

Please explain the set timer function in this code. Also what it does and what is the number 60535 used with set timer function. case 0: if (int_innercount == 0) { output_low(PIN_B5); output_low(PIN_B6); …
1 2 3
17
18