Tagged Questions
The delayed-execution tag has no wiki summary.
12
votes
7answers
12k views
Compare using Thread.Sleep and Timer for delayed execution
I have a method which should be delayed running for a specified amount of time.
Should I use
Thread thread = new Thread(() => {
Thread.Sleep(millisecond);
action();
});
...
7
votes
3answers
170 views
mysql delayed insert timestamp
I have a table with a field:: ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP
My question is, if I use delayed insert on this table, will the timestamp be the time when the request is queued or the time when ...
5
votes
4answers
1k views
Delay JavaScript's function execution
I have a JQuery's .each loop that calls a function with a parameter per iteration, is there a way to delay this function call? I have tried setTimeout as in the following but this does not work as the ...
5
votes
5answers
423 views
Call a base class constructor later (not in the initializer list) in C++
I'm inheriting a class and I would like to call one of its constructors. However, I have to process some stuff (that doesn't require anything of the base class) before calling it. Is there any way I ...
5
votes
4answers
1k views
Force Linq to not delay execution
In fact, this is the same question as this post:
How can I make sure my LINQ queries execute when called in my DAL, not in a delayed fashion?
But since he didn't explain why he wanted it, the ...
5
votes
4answers
442 views
Delaying execution of PHP script
What is the best way to stop bots, malicious users, etc. from executing php scripts too fast? Is it ok if I use the usleep() or sleep() functions to simply do "nothing" for a while (just before the ...
4
votes
2answers
122 views
Linux Kernel: udelay() returns too early?
I have a driver which requires microsecond delays. To create this delay, my driver is using the kernel's udelay function. Specifically, there is one call to udelay(90):
iowrite32(data, addr + ...
4
votes
2answers
175 views
Can you perform a delayed set (:= in Mathematica) in Matlab?
So, I've recently converted from Mathematica to Matlab, and while Matlab has most of Mathematica's useful features, I can't figure out how to perform the equivalent of Mathematica's delayed set ...
4
votes
7answers
633 views
The impossible inline Javascript delay/sleep
There is a JavaScript function, of which I have zero control of the code, which calls a function that I wrote. My function uses DOM to generate an iFrame, defines it's src and then appends it to ...
4
votes
1answer
211 views
Linq to Sql DB Object to Domain Object mapping and performance
I'm having a problem trying to make my LINQ to SQL queries and the mapping to my domain objects DRY without incurring the cost of multiple round trips to the db. Given this example:
var query1 = from ...
4
votes
2answers
217 views
What are the most time consuming checks performed by .NET when executing a managed appplication?
I've developed a .NET based Windows service that uses part managed (C#) and unmanaged code (C/C++ libraries).
In some domain environments (e.g. Win 2k3 32bit server inside domain abc.com) sometimes ...
4
votes
1answer
478 views
How can I make sure my LINQ queries execute when called in my DAL, not in a delayed fashion?
I have a DAL that is composed of a bunch of methods that perform LINQ queries on my database.
How do I ensure that before returning say an IEnumberable or something similar from the database, I ...
3
votes
4answers
144 views
Is LINQ faster or just more convenient?
Which of theses scenarios would be faster?
Scenario 1:
foreach (var file in directory.GetFiles())
{
if (file.Extension.ToLower() != ".txt" &&
file.Extension.ToLower() != ".bin")
...
3
votes
1answer
159 views
PLINQ delayed execution
I'm trying to understand how parallelism might work using PLINQ, given delayed execution. Here is a simple example.
string[] words = { "believe", "receipt", "relief", "field" };
bool result = ...
3
votes
3answers
1k views
Force an IQueryable to execute?
I have a method that 'has no translation to SQL' that I want to perform on an IQueryable, is there a way to force the IQueryable to execute without having to store it in some intermediate class?
2
votes
2answers
231 views
How does setNeedsLayout work?
I would like to know how Apple's -setNeedsLayout works.
I already know that it's more efficient than directly calling -layoutSubviews, since I might need to do that twice in a method.
And that's just ...
2
votes
1answer
40 views
How in ASP.NET MVC 2 with no JS/AJAX make delay download page
I want to make download page after button click. This page should show some information and then, after some time start downloading file. the best if that would work withouns JavaScript and Ajax. I ...
2
votes
1answer
101 views
Can I get a list of selectors delayed with performSelector:withObject:afterDelay:?
I would like to be able to cancel delayed selectors individually. I can do his with [NSObject cancelPreviousPerformRequestsWithTarget...] but need all the method parameters to do this. At the point ...
2
votes
2answers
355 views
Unity XmlDocument function not always working
Is there anything to consider when using XmlDocument function in unity3d?
I'm having this weird problem: When the function which uses XmlDocument is called from Awake() or OnGUI() the document is ...
2
votes
3answers
100 views
Need a mix of Delayed and Map
I have an application without a save button; saving happens automatically in the background. As the user works with the app, tasks are created and put into a queue for execution. Some of them are ...
2
votes
4answers
485 views
jQuery passing a function call through to another function and order of execution
I have this javascript:
triggerAnimation(listItem,toggleToggleRadioListItem(listItem));
function triggerAnimation(listItem,passThruFunction){
listItem.find(".inlineLoading").show();
// pause ...
2
votes
2answers
2k views
Is there a way to stop MYSQL Delayed Inserts from the MySQL configuration?
I got stuck with a weird issue with one of our servers. I see there are delayed mysql inserts
...
2
votes
4answers
1k views
c# reliable delayed/scheduled execution best practice
The project I am working on requires some executions to be done at a certain time. I am not sure what would be the best way to deal with this situation. The method must be able to survive server ...
1
vote
1answer
111 views
iOS Simulator Keyboard Input Delay
Whenever I use the keyboard in the iOS Simulator, I get about a 5 second delay from when I tap a key and when the input appears. And I get a similar experience with the UIPicker. Everything else runs ...
1
vote
3answers
57 views
jquery add delay to animation
I am trying to add a delay to my Jquery so that once the mouse leaves my div id=test it will wait 3000 ms before closing back up. It doesnt seem to be working however?
I am using Jquery 1.6.min
...
1
vote
2answers
29 views
Javascript Fails to Execute
For even a simple block of inline JavaScript in an HTML page, such as:
<script type="text/javascript">
var Hi= "Hi";
function SayHi ()
{
alert(Hi);
}
</script>
any browser that I ...
1
vote
2answers
196 views
How to pause execution for few seconds and continue the loop?
I am creating a small applicaiton for simulating dice roll. To simulate bounces I change the position of the picture randomly. Now to simulate more than one bounce, I used a for loop to continuously ...
1
vote
1answer
98 views
Loading new data onto a page without reload
I'm doing a high-level spec on an ASP.Net page which may have some delayed data presented.
When the page loads, the initial data presented will originate from a local database (which will be fast in ...
1
vote
2answers
142 views
How to introduce a delay between webrequests to a site in C#?
I making making multiple requests to a website. How can I introduce a delay between requests to slow down my process? Is there a method that allows me to just cause the thread to just wait for X ...
1
vote
1answer
113 views
delaying excel calculations during interop C#
I have to input several hundred cells into an excel sheet from a C# program. Each time I set a cell or a range, excel slowly responds... presumably updating various outputs between each input I add. ...
1
vote
1answer
68 views
A better way to stagger method calls/display 3 UIImageViews in delayed sequence
I've managed to implement a solution to this problem, however the code just seems rather inefficient and actually, the delayed method calls are proving a little troublesome when they continue to fire ...
1
vote
2answers
87 views
LINQ Strange Execution - Inconsistantly Consistant?
This IS a delayed execution problem. However, my issue stems from the fact that I cannot ascertain WHY this execution is delayed sometimes, and not other times.
Code:
IList<LineItem> ...
1
vote
0answers
233 views
Emails sent using Flex app are delayed
I'm currently building an application in Flex that utilizes SMTP Mailer to automatically send out emails to the user when a particular condition is satisfied. The application checks this condition ...
1
vote
1answer
70 views
Why does the interpreted order seem different from what I expect?
I have a problem that I have not faced before:
It seems that the order of interpretation in my program is somehow different from what I expect. I have written a small Twitter client. It takes a few ...
1
vote
1answer
847 views
NServiceBus Delayed Message Processing
I have an NServiceBus application for which a given message may not be processed due to some external event not having taken place. Because this other event is not an NSB event I can't implement ...
1
vote
4answers
303 views
Executing ajax code after a few seconds of inactivity from the user
I'm new here so please go easy on me. This is somewhat of a confusing situation. :)
I'm working on a search input in which a user enters a name of another user (or part of a name) in a search text ...
1
vote
2answers
428 views
Iphone delayed execution of code
[I just posted a similar question, but I'm not sure whether is actually got posted. Editor: please remove if this is a double post.]
The app that I'm writing has quite some code in the appdelegate's ...
0
votes
2answers
34 views
Objective - C - perform a function at given time/date
How might one get a function to be called at given time and date? For example, I would like to store some values of some variables at midnight (and clear them to zero) so they can be compared with ...
0
votes
2answers
42 views
jQuery delay and slow down sliding speed
The following code expands height of the DIV when hover function is performed and how can I change the code such that function has to take place if mouse is placed for 5 seconds. Also how can I slow ...
0
votes
2answers
98 views
Delayed execution in an Android activity
I would like to trigger showing a dialog X seconds after something happens in an activity (resumed, button clicked, etc.)
What are my options? (e.g. Thread, AsyncTask, Handler)
Are there special ...
0
votes
2answers
111 views
jquery delay execution of function
I need a little guidance. I am trying to delay the execution of these two functions until after the page is fully loaded or timebomb them to happen after 5000 ms.
I am using the latest jquery 1.6
...
0
votes
1answer
102 views
How to check if an iframe is fully loaded?
I have a JSP file in which I am starting 2 applications. The first application is starting through an <iframe> which is invisible and second one needs to started only after that the first ...
0
votes
4answers
117 views
Stop C# Code From Executing Every Time Page Loads
I have a public string in my code behind file that I intend to call from javascript when I'm ready for it. However, since it's not really tied to a particular event, it just fires every time the page ...
0
votes
2answers
29 views
Delayed searchable jobs in Rails
Is there some background processor in ruby which would allow to find an existing not started delayed jobs by custom key?
I'm trying to solve a task with e-mail notifications, when there could be ...
0
votes
0answers
80 views
How to set code running consecutively/delay after actions
I am using Cocos2D to develop an game that needs to have a delay before moving sprites. I have tried many different methods with no success including wait, sleep, NSTimer. All these seem to do is hang ...
0
votes
0answers
154 views
jQuery validate - add custom method which check AJAX return after delay
Has anyone succeeded in using jQuery validate plugin to create a custom validation with 2 requirements?
One is basic required
2nd one is a delayed (2-3seconds) AJAX post to check if user's email ...
0
votes
3answers
238 views
Delaying execution - C# WPF
I have a Grid control and clicking on each row does some background job to load the data. Each background job is performed on a thread pool thread. When user clicks on the items quickly, lot of ...
0
votes
1answer
44 views
Best way to approach simulation of passing time in Rails 3
Say for example I had an app where a person could place an order for food.
A person would click a button to order a dish, and then a timer would appear to signify how much longer the dish would take ...
0
votes
1answer
181 views
Codeigniter 2.x - Echo output as script is working
I was trying to get codeigniter to output text as the script was working but couldn't get it to work. I have search on here and google and seen using ob_end_flush(); and flush(); and also along with ...
0
votes
3answers
501 views
Jquery Fade in fade out, with pause or delay
If have the following code but i cant get a pause AFTER ever fade in and fade out:
$(document).ready(function () {
$('#signupButtonFlash').each(function (i) {
// Get the image, set the ...