1
vote
1answer
35 views
jQuery queue messages
Hello,
I've got a short function that should show messages on a website.
function showHint() {
$('#notify').html('message text').show('slide', {direction: 'right'}, 500);
}
And there is …
2
votes
2answers
205 views
MSMQ slow queue reading
I am using an open source .Net library which uses MSMQ underneath. After about a week or 2, the service slows down (not timed exactly but general guess). It appears that what is happening is …
2
votes
6answers
125 views
Delphi: Threaded list of thread jobs - queueing
Hi,
I have some operations which are based on TThreads. Now I need to create the thread containing the list of jobs to be done, then firing each one as soon as the previous finishes... How should I …
2
votes
7answers
770 views
How do I chain or queue custom functions using JQuery?
I have multiple functions the do different animations to different parts of the HTML. I would like to chain or queue these functions so they will run the animations sequentially and not at the same …
1
vote
4answers
229 views
Get notification when NSOperationQueue finishes all tasks
NSOperationQueue has waitUntilAllOperationsAreFinished, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.
What's the best way to …
0
votes
2answers
25 views
jQuery submit form after effect is complete?
Hi folks,
I'm trying to use jQuery's queue() to show() a div prior to submitting a form. However my current code just immediately submits the form before the show() effect even starts. BTW …
0
votes
1answer
33 views
clear Message Queue in C#
Hi!
C#:
i use the Message Queue to send messages from one application to the other one (this has to work only on one particular machine)
I create the queu like this on the receiver side:
…
0
votes
0answers
13 views
Actor based development - implementation questions
Hello, it's my first message here and I'm glad to join this community.
It looks like that everything is now going towards multi-thread development. Big fishes say that it won't take longer to reach …
3
votes
4answers
113 views
c# stack queue combination
hi!
is there in C# some already defined generic container which can be used as Stack and as Queue at the same time?
I just want to be able to append elements either to the end, or to the front of the …
1
vote
1answer
45 views
Packet Queue in Python?
Hi, is there any way to queue packets to a socket in Python? I've been looking for something like the libipq library, but can't find anything equivalent.
Here's what I'm trying to accomplish:
…
0
votes
3answers
78 views
C# put thread to sleep on dequeue?
I'm trying to use WebClient to download a bunch of files asynchronously. From my understanding, this is possible, but you need to have one WebClient object for each download. So I figured I'd just …
0
votes
2answers
27 views
Queueing functions and Ajax in jQuery
Hello,
I've got two functions and one problem.
hideTable();
ajaxCall(params);
The function hideTable
function hideTable() {
if (effects) {
$('#jquerytable tbody').fadeOut(speed);
}
}
…
0
votes
1answer
34 views
Javascript HTTP Request Queue within object variable - initialization doesn’t work
Hi folks,
I got the following Request Queue implementation from this blog:
http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/
and want to wrap it with a object …
0
votes
2answers
52 views
Java Queue Merge, Beginner
I'm trying to write a method that will take in two Queues (pre-sorted Linked Lists) and return the merged, in ascending order, resulting Queue object. I pasted the Queue class, the merge method …
2
votes
3answers
184 views
Efficient queue in Haskell.
How can I efficiently implement a list data structure where I can have 2 views to the head and end of the list, that always point to a head a tail of a list without expensive calls to reverse.
i.e:
…
