active questions tagged queue - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T15:59:30Zhttp://stackoverflow.com/feeds/tag/queuehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1906244/choosing-between-net-service-bus-queues-vs-azure-queue-service2Choosing between .NET Service Bus Queues vs Azure Queue ServiceChrisV2009-12-15T09:35:20Z2009-12-15T09:35:20Z
<p>Hi Everyone. Just a quick question for anyone that's built an Azure application. If I have a number of Web and Worker roles that need to communicate, documentation says to use the Azure Queue Service. </p>
<p>However, I've just read that the new .NET Service Bus now also offers queues. These look to be more powerful as they appear to offer a much more detailed API. Whilst the .NSB looks more interesting it has a couple of issues that make me wary of using it in distributed application. (for example, Queue Expiration... if I cannot guarantee that a queue will be renewed on time I may lose it all!).</p>
<p>Has anyone had any experience using either of these two technologies and could give any advice on when to choose one over the other.</p>
<p>I suspect that whilst the service bus looks more powerful, as my use case is really just enabling Web/Worker roles to communicate between each other, that the Azure Queue Service is what I'm after. But I'm just really looking for confirmation of that before progamming myself in to a corner :-)</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1840684/message-queues-vs-db-table-queue-via-cron2Message Queues Vs DB Table Queue via CRONBowen2009-12-03T15:34:02Z2009-12-15T06:16:10Z
<p>We have a large project coming up soon with quite a lot of media processing (Images, Video) as well email output etc, the sort of stuff normally we'd put into a table called "email_queue" and we use a cron to run a script process the queue in the table.</p>
<p>I have been reading a lot on Message Queue systems like beanstalkd, and have even set it up. It was easy and nice to use, the problem is that I am unsure whether I am missing something.</p>
<p>Could someone detail the benefits of using a queue system rather than a table and a CRON? Since I really can't see to see what they are.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set1Is there a Queue (PriorityQueue) implementation which is also a Set?Mauli2009-12-08T18:46:36Z2009-12-10T13:48:52Z
<p>I'm looking for a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/PriorityQueue.html" rel="nofollow">PriorityQueue</a> implementation which is also a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Set.html" rel="nofollow">Set</a>.</p>
<p>The <code>compareTo</code> implementation if its elements must not have the requirement to be consistent with the implementation of <code>equals</code>.</p>
<p>Is there somewhere such a implementation for java?</p>
<p><strong>Update:</strong> I implemented it now using a SortedSet as the internal collection. So I only had to implement the missing methods to satisfy the queue interface. I also forgot to mention that it also had to be a bounded queue, so it features a capacity and discards the last element of the set if capacity is reached.</p>
http://stackoverflow.com/questions/1871319/in-memcached-you-can-put-a-list-as-a-value-can-you-put-a-list-in-beanstalkd0In memcached, you can put a List as a value. Can you put a list in beanstalkd?alex2009-12-09T02:51:51Z2009-12-09T02:51:51Z
<p>Actually, I would like to use this for logging.
I want to put a dictionary into beanstalkd.</p>
<p>Everytime someone goes into my website, I want to put a dictionary into beanstalkd, and then every night, I want a script that will get all the jobs and stick them in the database.</p>
<p>THis will make it fast and easy.</p>
http://stackoverflow.com/questions/1869324/using-jquery-for-mouseover-effect-and-queue0Using Jquery for mouseover effect and queueJared2009-12-08T19:36:12Z2009-12-08T20:07:16Z
<p>I've been looking around for the last couple hours on how to do this - can't find it anywhere.</p>
<p>I have several buttons (divs). It consists of a div within a div. The parent div has the normal button background image, the child has a lighter glowy background image. On Mouseover, I want the child div to go to an opacity of 1.0, then fade out to 0.2 (so it looks like a flash). On MouseOut, it just needs to go back to 0.0. Obviously I don't want MouseOver/MouseOut queue buildup.</p>
<p>I looked at queue effects, but I can't figure out how to get this to work with a MouseOver button. Plus I suck at JS. </p>
http://stackoverflow.com/questions/1859210/best-approach-for-thread-synchronized-queue0Best approach for thread synchronized queueRunner2009-12-07T10:40:35Z2009-12-08T15:49:21Z
<p>I have a queue in which I can enqueue different threads, so I can assure two things:</p>
<ol>
<li>Request are processed one by one.</li>
<li>Request are processed in the arriving order </li>
</ol>
<p>Second point is important. Otherwise a simple critical section would be enough.
I have different groups of requests and only inside a single group these points must be fulfilled. Requests from different groups can run concurrent.</p>
<p>It looks like this:</p>
<pre><code>FTaskQueue.Enqueu('MyGroup');
try
Do Something (running in context of some thread)
finally
FTaskQueue.Dequeu('MyGroup');
end;
</code></pre>
<p><strong>EDIT</strong>: I have removed the actual implementation because it hides the problem I want to solve</p>
<p>I need this because I have an Indy based web server that accepts http requests. First I find a coresponding session for the request. Then the request (code) is executed for that session. I can get multiple requests for the same session (read I can get new requests while the first is still processing) and they must execute one by one in correct order of arrival. So I seek a generic synchronization queue that can be use in such situations so requests can be queued. I have no control over the threads and each request may be executed in a different thread.</p>
<p>What is best (ususal) approach to this sort of problem? The problem is that Enqueue and Dequeue must be atomic opeations so that correct order is preserverd. My current implementation has a substantial bottleneck, but it works.</p>
<p><strong>EDIT</strong>: Bellow is the problem of atomic Enqueue / Dequeue operations</p>
<p>You wold normaly do something like this:</p>
<pre><code>procedure Enqueue;
begin
EnterCriticalSection(FCritSec);
try
DoEnqueue;
finally
LeaveCriticalSection(FCritSec);
end;
BlockTheCurrentThread; // here the thread blocks itself
end;
procedure Dequeue;
begin
EnterCriticalSection(FCritSec);
try
DoDequeue;
UnblockTheNextThread; // here the thread unblocks another thread
finally
LeaveCriticalSection(FCritSec);
end;
end;
</code></pre>
<p>Now the problem here is that this is not atomic. If you have one thread already in the queue and another one comes and calls Enqueue, it can happen, that the second thread will just leave the critical section and try to block itself. Now the thread scheduler will resume the first thread, which will try to unblock the next (second) thread. But second thread is not blocked yet, so nothing happens. Now the second thread continues and blocks itself, but that is not correct because it will not be unblocked. If blocking is inside critical section, that the critical section is never leaved and we have a deadlock.</p>
http://stackoverflow.com/questions/1803417/actor-based-development-implementation-questions0Actor based development - implementation questionsunknown (google)2009-11-26T12:30:32Z2009-12-08T06:26:30Z
<p>Hello, it's my first message here and I'm glad to join this community.</p>
<p>It looks like that everything is now going towards multi-thread development. Big fishes say that it won't take longer to reach hundreds of cores.</p>
<p>I've recently read about actor based development and how wonderful message passing is to handle concurrent programming. In addition, I also read that they can be implemented as a means of method call. In this case, a given object is also an actor.</p>
<p>In other words we no longer call methods arbitrarily. They are post in queue for late processing. A queue then ensures that a object's state(var) isn't modified at the same time because messages are all serialized.</p>
<p>I understand that this model is quite straightforward to implement (at least an experimental one) and perhaps that's why is too difficult to find any technical detail.</p>
<p>My question concerns queues. This is a typical case of multiple-producers and one consumer and I suspect they require some sort of synchronization. Is that true? There would be another solution? I heard they can be implemented as lock-free structures. </p>
<p>I'm not really sure about that. Any comment will be greatly appreciated.</p>
<p>Have a nice day pals</p>
http://stackoverflow.com/questions/1854458/breadth-first-binary-tree-traversal-in-scheme0Breadth First Binary Tree Traversal in SchemeJR2009-12-06T05:31:17Z2009-12-08T02:17:41Z
<p>Hello,
I am trying to implement a breadth first (level) tree traversal. I'm very close, but I can't figure out how I'm getting duplicates. Any help is much appreciated. Thanks in advance.
JR</p>
<pre><code>(define (atom? x)
(not (pair? x)))
;;Functions to manipulate a binary tree
(define (leaf? node) (atom? node))
(define (left node) (cadr node))
(define (right node) (caddr node))
(define (label node) (if (leaf? node) node (car node)))
;; Breadth First using queue
(define (breadth node)
(q 'enqueue! node) ;; Enqueue tree
(output 'enqueue! (label node)) ;; Output root
(helper node)
(output 'queue->list) ;; Output elements in queue
)
(define (helper node)
(if (not(q 'empty?)) ;; If queue is not empty
(begin
(if(not(leaf? node))
(begin
(q 'enqueue! (left node)) ;; left tree to q
(output 'enqueue! (label(left node))) ;; Output root of left tree
(q 'enqueue! (right node)) ;; Enqueue right tree to q
(output 'enqueue! (label(right node))) ;; Output root of right tree
))
(helper (q 'dequeue!)) ;; Dequeues 1st element in q
;; and recursively calls helper
)
)
)
(define (make-queue)
(let ((front '())
(back '()))
(lambda (msg . obj)
(cond ((eq? msg 'empty?) (null? front))
((eq? msg 'enqueue!)
(if (null? front)
(begin
(set! front obj)
(set! back obj))
(begin
(set-cdr! back obj)
(set! back obj))))
((eq? msg 'dequeue!)
(begin
(let ((val (car front)))
(set! front (cdr front))
val)))
((eq? msg 'queue->list) front)))))
(define q (make-queue))
(define output (make-queue))
(define tree '(A (B C D)(E (F G H) I)))
---------------------------------------------------------
Welcome to DrScheme, version 4.2.2 [3m].
Language: R5RS; memory limit: 128 megabytes.
> (breadth tree)
(a b e b e c d f i c d f i g h g h) ;; Should be (a b e c d f i g h)
>
</code></pre>
http://stackoverflow.com/questions/1858851/peek-and-remove-methods-for-queue-implementation-in-blackberry0Peek() and remove() methods for Queue implementation in Blackberryitsteju2009-12-07T09:32:15Z2009-12-07T17:12:39Z
<p>Hi,</p>
<p>I want to implement peek and remove methods , similar to Java's Queue.peek() and Queue.remove() , in Blackberry application. I have a custom queue implementation ,but how do I get peek elements and remove elements from queue?</p>
<p>Please help,</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1848920/c-moving-files-to-queue-or-multi-thread2C# - Moving files - to queue or multi-threadunknown (yahoo)2009-12-04T18:48:09Z2009-12-04T21:29:53Z
<p>I have an app that moves a project and its files from preview to production using a Flex front-end and a .NET web service. Currently, the process takes about 5-10 mins/per project. Aside from latency concerns, it really shouldn't take that long. I'm wondering whether or not this is a good use-case for multi-threading. Also, considering the user may want to push multiple projects or one right after another, is there a way to queue the jobs. </p>
<p>Any suggestions and examples are greatly appreciated. </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/744077/in-process-activemq-producer-consumer-example0In-process ActiveMQ producer/consumer example?Chris R2009-04-13T14:33:06Z2009-12-04T05:15:20Z
<p>I'm investigating using ActiveMQ as an embedded in-process message queue in my
application, but I'm a bit stuck on how I go about starting such an application
up. I envision it like so (pseudocode, of course):</p>
<pre><code>configureBroker ()
broker.start ()
createProducer (broker)
producer.start ()
for each desired consumer
createConsumer (broker)
consumer.start ()
waitForSignal ()
signalProducerShutdown ()
waitForEmptyQueues ()
signalConsumerShutdown ()
broker.stop ()
</code></pre>
<p>I've tried to assemble a simple version of this, but I'm stuck on how to write
the producers and consumers in such a way as to have them work forever, or
until told to quit. What is the best way to do this? I'm speaking specifically about the threading aspect; what do I need/want to spawn off in its own thread, etc...</p>
<p>I'm completely new to message queue based applications, so please be verbose with your examples.</p>
http://stackoverflow.com/questions/1829641/are-sockets-events-queued-in-flash0Are Socket's events queued in Flash?james_bond2009-12-01T23:19:56Z2009-12-02T13:16:18Z
<p>I'm trying to implement a binary protocol between a flash application and a Custom Java Server using TCP/IP sockets, the protocol's messages are of variable length, so my idea is to add a field indicating the number of bytes I have to read before parsing a complete message, something like this:</p>
<pre><code>bytesToRead = socket.readInteger();
var bf:ByteArray;
socket.readBytes(bytesToRead);
parseMessage(bf);
</code></pre>
<p>So my question is: if while processing a message (supossing it is complete) other data arrives through the socket, are messages of type ProgressEvent.SOCKET_DATA queued so the number of times my handler is called is equal (at least in this case) to the number of messages arrived or should I read until all data the socket has available? or simpler: <strong>are in general messages for a handler queued in flash?</strong></p>
http://stackoverflow.com/questions/526487/queuing-systems-what-is-a-good-way-to-start-up-multiple-workers0Queuing systems - what is a good way to start up multiple workers?Alister Bulman2009-02-08T21:51:50Z2009-12-01T17:47:16Z
<ul>
<li>How have you set-up one or more worker scripts for queue-oriented systems?</li>
<li>How do you arrange to startup - and restart if necessary - worker scripts as required? (I'm thinking about such tools as init.d/, Ruby-based 'god', DJB's Daemontools, etc, etc)</li>
</ul>
<p>I'm developing an asynchronous queue/worker system, in this case using PHP & <a href="http://xph.us/software/beanstalkd/" rel="nofollow">BeanstalkdD</a> (though the actual language and daemon isn't important). The tasks themselves are not too hard - encoding an array with the commands and parameters into JSON for transport through the Beanstalkd daemon, picking them up in a worker script to action them as required.</p>
<p>There are a number of other similar queue/worker setups out there, such as <a href="http://rubyforge.org/projects/starling/" rel="nofollow">Starling</a>, <a href="http://www.danga.com/gearman/" rel="nofollow">Gearman</a>, <a href="http://aws.amazon.com/sqs/" rel="nofollow">Amazon's SQS</a> and other more 'enterprise' oriented systems like IBM's MQ and RabbitMQ. If you run something like Gearman, or SQS - how do <em>you</em> start and control the worker pool? The questions is on the initial worker startup, and then being able to add additional extra workers, shutting them down at will (though I can send a message through the queue to shut them down - as long as some 'watcher' won't automatically restart them). This is not a PHP problem, it's about straight Unix processes of setting up one or more processes to run on startup, or adding more workers to the pool.</p>
<p>A <a href="http://pastebin.ca/1331063" rel="nofollow">bash script to loop a script </a> is already in place - this calls the PHP script which then collects and runs tasks from the queue, occasionally exiting to be able to clean itself up (it can also pause a few seconds on failure, or via a planned event). This works fine, and building the worker processes on top of that won't be very hard at all.</p>
<p>Getting a good worker controller system is about flexibility, starting one or two automatically on a machine start, and being able to add a couple more from the command line when the queue is busy, shutting down the extras when no longer required.</p>
http://stackoverflow.com/questions/1095263/how-do-i-chain-or-queue-custom-functions-using-jquery2 How do I chain or queue custom functions using JQuery?orandov2009-07-07T22:54:19Z2009-11-30T22:51:19Z
<p>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 time.</p>
<p>I am trying to automate multiple events in sequence to look like a user has been clicking on different buttons or links. </p>
<p>I could probably do this using callback functions but then I would have to pull all of the animations from the different functions and regroup in the right pattern.</p>
<p>Does the jquery "queue" help? I couldn't understand the <a href="http://docs.jquery.com/Core/queue" rel="nofollow">documentation</a> for the queue.</p>
<p>Example, JQuery:</p>
<pre><code> function One() {
$('div#animateTest1').animate({ left: '+=200' }, 2000);
}
function Two() {
$('div#animateTest2').animate({ width: '+=200' }, 2000);
}
// Call these functions sequentially so that the animations
// in One() run b/f the animations in Two()
One();
Two();
</code></pre>
<p>HTML:</p>
<pre><code> <div id="animatetest" style="width:50px;height:50px;background-color:Aqua;position:absolute;"></div>
<div id="animatetest2" style="width:50px;height:50px;background-color:red;position:absolute;top:100px;"></div>
</code></pre>
<p>Thanks.</p>
<p>EDIT:
I tried it with <a href="http://plugins.jquery.com/project/timers" rel="nofollow">timers</a> but I thought there is a better way to do it.</p>
<p>EDIT #2:</p>
<p>Let me be more specific. I have multiple functions bound to click & hover events on different elements of the page. Normally these functions have nothing to do with each other ( they don't reference each other). I would like to simulate a user going through these events without changing the code of my existing functions.</p>
http://stackoverflow.com/questions/1817799/c-queue-and-multithreading1C# - Queue and multithreadingEmon2009-11-30T04:08:24Z2009-11-30T06:26:19Z
<p>I am very new to multi-threaded programming. Following is what I am trying to achieve:</p>
<ul>
<li>
Create a windows service that continuously reads the database (or somekind of message queue, please suggest what would be best) for a entry in a table.
</li>
<li>
Look for a new entry in the table
</li>
<li>
If there is a new entry, check if there is enough thread in the threadpool (not sure how that would work), start a new thread and do some work. There could be many new entries during high traffic thats why I need to have it multi-threaded.
</li>
</ul>
<p>Thank you all. Please help me with ideas and link. I appreciate your help.</p>
http://stackoverflow.com/questions/1810943/jquery-queue-messages1jQuery queue messagesdominik2009-11-27T23:10:10Z2009-11-28T11:28:31Z
<p>Hello,</p>
<p>I've got a short function that should show messages on a website. </p>
<pre><code>function showHint() {
$('#notify').html('message text').show('slide', {direction: 'right'}, 500);
}
</code></pre>
<p>And there is another function that hides the messages. </p>
<pre><code>function hideHint() {
$('#notify').hide('slide', {direction: 'right'}, 500);
}
</code></pre>
<p>The Problem is that if I call this function more than one times it tries to show all messages at the same time and everything breaks. I want to call the function twice and then it should queue the animations and show one message after another. The function should be called more than one times at the same time but shown one after another. The next message should be shown when the firs hides. </p>
<p>How could I solve the Problem? Would be nice!</p>
http://stackoverflow.com/questions/1587672/msmq-slow-queue-reading2MSMQ slow queue readingmrnye2009-10-19T09:12:47Z2009-11-28T01:03:17Z
<p>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 messages from MSMQ are only being read exactly once every 10 seconds. Normally, they are read instantly. So they will be read at T+10sec, T+20sec, T+30sec, etc. independent of when the message was sent (i.e. sometimes it takes 3 seconds for the message to be read, other times 9 seconds).</p>
<p>The current way I get it back to normal is simply deleting & recreating the queues. So the question is, what can build up in MSMQ queues to cause this kind of slow down? There are no messages in the queues when the slowdown occurs. Are there any advanced MSMQ analysis tools that give you a deeper look at the queues (as opposed to Computer Management)?</p>
<p>Oh, I forgot to mention, writing the messages to the queue still appears to be instantaneous. It is just reading the messages which shows this behavior. </p>
<p><strong>EDIT:</strong> Follow up question @ <a href="http://stackoverflow.com/questions/1794307/c-net-msmq-receive-method-timeout-problem">here</a> which is a bit more detailed and more focused.</p>
http://stackoverflow.com/questions/1805633/delphi-threaded-list-of-thread-jobs-queueing2Delphi: Threaded list of thread jobs - queueingmichal2009-11-26T21:05:44Z2009-11-27T20:07:15Z
<p>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 write it? I can't allow the threads to be ran simultaneously as there might be over 10 000 operations to be done.
It is quite hard to find documented examples of TEvent and other syncing objects...
Hope I'll find some help here ...</p>
<p>Thanks in advance,
michal</p>
http://stackoverflow.com/questions/1049001/get-notification-when-nsoperationqueue-finishes-all-tasks1Get notification when NSOperationQueue finishes all tasksporneL2009-06-26T13:00:14Z2009-11-27T08:49:53Z
<p><code>NSOperationQueue</code> has <code>waitUntilAllOperationsAreFinished</code>, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.</p>
<p>What's the best way to accomplish this?</p>
<p>I can't send notifications from my <code>NSOperation</code>s, because I don't know which one is going to be last, and <code>[queue operations]</code> might not be empty yet (or worse - repopulated) when notification is received.</p>
http://stackoverflow.com/questions/1804538/jquery-submit-form-after-effect-is-complete0jQuery submit form after effect is complete?jerrygarciuh2009-11-26T16:08:11Z2009-11-26T16:16:15Z
<p>Hi folks,</p>
<p>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 #savebutton is not a submit element, just an image with this click event.</p>
<pre><code>$("#savebutton").click(function () {
$("#saving").queue(function()
{
$("#saving").show("slow");
$("#form1").submit();
});
});
</code></pre>
<p>How can I make sure the show() completes before submitting?</p>
<p>Thanks for any advice!!</p>
<p>JG</p>
http://stackoverflow.com/questions/1804269/clear-message-queue-in-c0clear Message Queue in C#genesys2009-11-26T15:20:14Z2009-11-26T15:42:05Z
<p>Hi!</p>
<p>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)</p>
<p>I create the queu like this on the receiver side:</p>
<pre><code> string queueName = ".\\private$\\WZMSGQ";
if (MessageQueue.Exists(queueName))
msgQueue = new MessageQueue(queueName);
else
msgQueue = MessageQueue.Create(queueName, false);
</code></pre>
<p>and after this i start the sender application, where i create the queue like that:</p>
<pre><code> msgQueue = new MessageQueue(".\\private$\\WZMSGQ");
</code></pre>
<p>in the receiver Application I then retrieve new messages:</p>
<pre><code> Message[] messages = msgQueue.GetAllMessages();
foreach (Message msg in messages){
doSomething();
}
</code></pre>
<p>Now i'd like to do two things:</p>
<p>I would like to clear the message queue when instanciating the new MessageQueue instance on the receiver machine such that all old messages are gone.
I'd like to delete the message queue when the program ends, such that it does not exist anymore if i start the application the next time</p>
<p>how can I do that?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1798348/c-stack-queue-combination3c# stack queue combinationMat2009-11-25T16:55:43Z2009-11-25T17:52:51Z
<p>hi!</p>
<p>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 queue</p>
<p>thanks</p>
http://stackoverflow.com/questions/1792320/packet-queue-in-python1Packet Queue in Python?Kevin2009-11-24T19:20:26Z2009-11-24T21:55:28Z
<p>Hi, is there any way to queue packets to a socket in Python? I've been looking for something like the <code>libipq</code> library, but can't find anything equivalent. </p>
<p>Here's what I'm trying to accomplish:</p>
<ol>
<li>Create tcp socket connection between server and client (both under my control).</li>
<li>Try transmitting data (waiting for connection to fault -- e.g. client loses connectivity because of shutting laptop)</li>
<li>Catch <code>SocketException</code> and hold on
to the data that was trying to be
sent while keeping the remaining
data waiting (in a Queue?)</li>
<li>Enter in to loop trying to reconnect
(assuming that success is
inevitable)</li>
<li>Create new socket upon success</li>
<li>Resume data transmission</li>
</ol>
<p>Any suggestions? Can Twisted do this? Do I need to involve <code>pcapy</code>? Should I do this (sockets, queues, etc) in C and use Boost to make hybrid code? </p>
<p>Thanks in advance.</p>
<p><hr></p>
<p><strong>Edit 1:</strong></p>
<p>Response to Nick:</p>
<blockquote>
<p>I left out the fact that the data I'll
be transmitting will be generalized
and unending -- think of this app
sitting under an ssh session (i'm not
in any way trying to peek into the
packets). So, the transmission will be
bilateral. I want to be able to go
from the office to my home (closing my
laptop in between), open the laptop at
home and continue in my session
seamlessly. (I know SCREEN exists).
This might lead you to wonder how it'd
work without proxies. It won't, I just
haven't explained that design.
Blockquote</p>
</blockquote>
<p>With the added context, I should also say I won't have to catch a <code>SocketException</code> on the server side since that machine will be (or assume to be) fixed. When the client figures out that it's got connectivity again, it'll just re-connect to the server.</p>
http://stackoverflow.com/questions/1781823/c-put-thread-to-sleep-on-dequeue0C# put thread to sleep on dequeue?Mark2009-11-23T08:38:20Z2009-11-23T10:12:19Z
<p>I'm trying to use <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient%28VS.80%29.aspx" rel="nofollow">WebClient</a> to download a bunch of files asynchronously. From my understanding, this is possible, but you need to have one <code>WebClient</code> object for each download. So I figured I'd just throw a bunch of them in a queue at the start of my program, then pop them off one at a time and tell them to download a file. When the file is done downloading, they can get pushed back onto the queue. </p>
<p>Pushing stuff onto my queue shouldn't be too bad, I just have to do something like:</p>
<pre><code>lock(queue) {
queue.Enqueue(webClient);
}
</code></pre>
<p>Right? But what about popping them off? I want my main thread to sleep when the queue is empty (wait until another web client is ready so it can start the next download). I suppose I could use a <code>Semaphore</code> alongside the queue to keep track of how many elements are in the queue, and that would put my thread to sleep when necessary, but it doesn't seem like a very good solution. What happens if I forget to decrement/increment my Semaphore every time I push/pop something on/off my queue and they get out of sync? That would be bad. Isn't there some nice way to have <code>queue.Dequeue()</code> automatically sleep until there is an item to dequeue then proceed?</p>
<p>I'd also welcome solutions that don't involve a queue at all. I just figured a queue would be the easiest way to keep track of which WebClients are ready for use.</p>
http://stackoverflow.com/questions/1775899/queueing-functions-and-ajax-in-jquery0Queueing functions and Ajax in jQuerydominik2009-11-21T16:11:34Z2009-11-21T16:26:22Z
<p>Hello,
I've got two functions and one problem. </p>
<pre><code>hideTable();
ajaxCall(params);
</code></pre>
<p>The function hideTable</p>
<pre><code>function hideTable() {
if (effects) {
$('#jquerytable tbody').fadeOut(speed);
}
}
</code></pre>
<p>I want the ajaxCall function to be executed after the hideTable function (which takes a little time). The showTable function should be executed after the ajax call.
I tried a lot but nothing worked fine for me. The Ajax call starts before the hideTable function is finished. I think I could use the jQuery queue but I don't know how to apply it to this problem.</p>
<p>By the way, I don't want to use a callback function beacause I want to reuse the hideTable function in other contexts. </p>
<p>Would be nice if you could help me out. </p>
http://stackoverflow.com/questions/1769573/javascript-http-request-queue-within-object-variable-initialization-doesnt-wor0Javascript HTTP Request Queue within object variable - initialization doesn't workdforce2009-11-20T10:23:15Z2009-11-20T12:39:27Z
<p>Hi folks,</p>
<p>I got the following Request Queue implementation from this blog: </p>
<p><a href="http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/" rel="nofollow">http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/</a></p>
<p>and want to wrap it with a object variable. Unfortunately the variable initialization inside doesn't work.</p>
<p>Hope someone can help me with this stuff. Thanks in advance</p>
<pre>
var requestQueue = {
inCall : false, // VARIABLE TO TRACK IF WE ARE CURRENTLY IN A CALL
callToArray : new Array(), // QUEUE FOR CALLS
returnToArray : new Array(), // QUEUE FOR FUNCTION TO EXECUTE WHEN CALL COMPLETE
reqMethodArray : new Array(), // QUEUE FOR REQUEST METHOD
createRequestObject : function(){
var reqObj;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
reqObj = new ActiveXObject("Microsoft.XMLHTTP");
isIE = true;
}else{
reqObj = new XMLHttpRequest();
}
return reqObj;
},
sendCall : function(whereTo, returnTo, reqMethod){
// GET THE NEXT ARRAY ITEM AND REMOVE FROM THE ARRAY
this.callToArray.push(whereTo);
this.returnToArray.push(returnTo);
if (reqMethod != "GET" || reqMethod != "POST") { reqMethod = "GET"; }
this.reqMethodArray.push(reqMethod);
},
callQueue : function(){
// CHECK THE QUEUE AND SEND THE NEXT CALL IN LINE
if(!this.inCall && this.callToArray.length > 0){
// DO WE HAVE ANYTHING IN THE QUEUE?
if(this.callToArray.length > 0){
// WE DO, SO GET THE FIRST ITEM IN THE CALL ARRAY AND REMOVE IT
whereTo = this.callToArray.shift();
returnTo = this.returnToArray.shift();
reqMethod = this.reqMethodArray.shift();
// SEND THAT CALL
this.doCall(whereTo, returnTo, reqMethod);
}else{
// UPDATE DEBUG QUEUE
}
}else{
// UPDATE DEBUG QUEUE
}
},
doCall : function(whereTo, returnTo){
this.inCall = true;
var http = this.createRequestObject();
http.open('get', whereTo);
// DO WE HAVE A FUNCTION TO CALL ONCE CALL IS COMPLETED?
if(returnTo.length > 0){
eval("http.onreadystatechange = " + returnTo);
}
// SEND CALL
http.send(null);
}
};
setInterval(requestQueue.callQueue, 100);
</pre>
http://stackoverflow.com/questions/1760420/java-queue-merge-beginner0Java Queue Merge, BeginnerBenzle2009-11-19T01:52:25Z2009-11-19T14:13:30Z
<p>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 <em>Queue</em> class, the <em>merge method</em> starts 1/2 way down. </p>
<p>I'm having trouble calling merge, this is how I am trying to call it from my <em>main method</em>, can anyone help with this call with new1 and new2. Thanks so much Everyone! </p>
<p>Please let me know if anyone notices anything else out of place. Thanks!</p>
<pre><code>///////////////// //Testing with a call of merge method & 2 Queues///////////////////
public class test {
public static void main (String args[]){
Queue new1 = new Queue();
new1.enqueu(1);
new1.enqueu(3);
new1.enqueu(5);
Queue new2 = new Queue();
new1.enqueu(2);
new1.enqueu(4);
new1.enqueu(6);
merge(new1, new2);
//How to call merge? Queue.merge(new1, new2)???
/////////////////Queue/Merge method below////////////////////////
public class Queue {
private Node first, last;
public Queue(){
first = null;
last = null;
}
public void enqueu(int n){
Node newNode = new Node(n);
if (first == null)
{
first = newNode;
last = newNode;
}
else
{
last.setNext(newNode);
last = newNode;
}
}
public int dequeue(){
int num = first.getNum();
first = first.getNext();
if(first == null)
last = null;
return num;
}
public Boolean isEmpty() { return first == null; }
////////////////////////Begin Queue merge/////////////////////////////////
Queue merge(Queue q1, Queue q2) {
Queue result = new Queue();
boolean q1empty = q1.isEmpty();
boolean q2empty = q2.isEmpty();
while (!(q1empty || q2empty)) {
if (q1.first.getNum() < q2.first.getNum()) {
result.enqueu(q1.dequeue());
q1empty = q1.isEmpty();
} else {
result.enqueu(q2.dequeue());
q2empty = q2.isEmpty();
}
}
if (!q1empty) {
do {
result.enqueu(q1.dequeue());
} while (!q1.isEmpty());
} else if (!q2empty) {
do {
result.enqueu(q2.dequeue());
} while (!q2.isEmpty());
}
return result;
}}
</code></pre>
http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell2Efficient queue in Haskell.Absolute02009-11-16T02:04:59Z2009-11-19T01:08:42Z
<p>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:</p>
<pre><code>start x = []
end x = reverse start -- []
start1 = [1,2,3] ++ start
end start1 -- [3,2,1]
</code></pre>
<p>end should be able to do this without invoking 'reverse' but simply looking at the given list from the perspective of the list being in reverse automatically. The same should hold if I create new lists from concatenations to start.</p>
http://stackoverflow.com/questions/1759803/java-blockingqueue-does-not-have-a-blocking-peek2java BlockingQueue does not have a blocking peek?prmatta2009-11-18T23:11:42Z2009-11-19T01:01:26Z
<p>I have a blocking queue of objects.</p>
<p>I want to write a thread that blocks till there is a object on the queue. Similar to the functionality provided by BlockingQueue.take().</p>
<p>However, since I do not know if I will be able to process the object successfully, I want to just peek() and not remove the object. I want to remove the object only if I am able to process it successfully.</p>
<p>So, I would like a blocking peek() function. Currently, peek() just returns if the queue is empty as per the javadocs.</p>
<p>Am I missing something? Is there another way to achieve this functionality?</p>
<p><strong>EDIT:</strong></p>
<p>Any thoughts on if I just used a thread safe queue and peeked and slept instead? </p>
<pre><code>public void run() {
while (!__exit) {
while (__queue.size() != 0) {
Object o = __queue.peek();
if (o != null) {
if (consume(o) == true) {
__queue.remove();
} else {
Thread.sleep(10000); //need to backoff (60s) and try again
}
}
}
Thread.sleep(1000); //wait 1s for object on queue
}
}
</code></pre>
<p>Note that I only have one consumer thread and one (separate) producer thread. I guess this isn't as efficient as using a BlockingQueue... Any comments appreciated.</p>
http://stackoverflow.com/questions/1756692/locking-a-queue-while-re-ordering-it-in-coldfusion0Locking a queue while re-ordering it in Coldfusionciaranarcher2009-11-18T15:14:52Z2009-11-18T15:34:24Z
<p>Hi all, please consider the following:</p>
<ul>
<li><p>I have a queue of objects represented
as an array. </p></li>
<li><p>I process them off the top of the
array (at position 1) before calling
<code>arrayDeleteAt()</code> to remove it from
the array. </p></li>
<li><p>I add new queue item at the top of
the array using <code>arrayAppend()</code>.</p></li>
</ul>
<p>This works fine. However, I now wish to re-order the array immediately after adding an item. </p>
<p>I am concerned that if a thread is taking from the queue it will find the queue order has changed between it taking the item at position 1 and it deleting the item at position 1 - because in that time an additional item has been added the the queue has been re-sorted. So I need to ensure my queue is thread-safe. </p>
<p>Is there any way to doing this using the <code>cflock</code> tag? Since my add and remove code are in different places in the code the thread executing one bit of code would need to know that a thread is executing another specific bit of code and halt until that other thread has stopped executing it's code. </p>
<p>Or am I better off just raising a flag while the sorting is going on and preventing anything being taken from the array while the sort is in progress? </p>
<p>All this is happening in the <code>APPLICATION</code> scope on a CF 8 Enterprise server. </p>
<p>Thanks in advance for any help. </p>
<p>Ciaran</p>