A queue is an ordered, first-in-first-out data structure. Typical implementations of queues support pushing elements to the back and popping them off the front position.

learn more… | top users | synonyms

0
votes
0answers
5 views

queue() call d3.json of world-110m.json produces syntax error for a worldmap with topoJSON

I successfully completed the "Let's make a map" tutorial (http://bost.ocks.org/mike/map/) and now wanted to continue with a world map (http://techslides.com/d3-world-maps-tooltips-zooming-and-queue/). ...
0
votes
0answers
25 views

Message Queue Linux C

I have 2 programs a client and a Server process -CLIENT- I have the following code if (msgsnd(msgid, (void *)&mensagemx,MAX_TEXT, 0) == -1) { fprintf(stderr, "msgsnd failed1\n"); ...
0
votes
1answer
32 views

Manually trigger a @Scheduled method

I need advice on the following: I have a @Scheduled service method which has a fixedDelay of a couple of seconds in which it does scanning of a work queue and processing of apropriate work if it ...
0
votes
0answers
21 views

PHP Extract equally from X queues to one queue with Y elements

I need to implement a system of queueing that extracts elements equally from x queues to one single queue with y positions. Let's say I have 5 queues, each with a number of elements and I need to ...
0
votes
2answers
23 views

Save Queue to File, Then load it and compare with Original

I have a Problem saving a Queue to a file, loading it afterwards into a new queue and then compare the old Queue with the new Queue. I have a simple TestMessageClass, now i want to serialize the ...
0
votes
0answers
12 views

Resolving concurrent updates in Innodb

Problem: I am trying to track clicks on images in my website with a table `click_counts(image_id int(10) NOT NULL, image_clicks int(10) NOT NULL DEFAULT 0, PRIMARY KEY (image_id))Engine=InnoDB; ...
1
vote
2answers
30 views

examining items in a python Queue

Is it possible to examine items in a Queue in python without calling get()? .As per the docs,indexing is not allowed in queue .I need to check if the item at the head of queue satisfies some condition ...
0
votes
2answers
65 views

Learning python and threading. I think my code runs infinitely. Help me find bugs?

So I've started learning python now, and I absolutely am in love with it. I'm building a small scale facebook data scraper. Basically, it will use the Graph API and scrape the first names of the ...
0
votes
1answer
23 views

Use Redis for a timeout queue or leaderboard

I want to use Redis basically like this, if it (hypothetically) accepted SQL: SELECT id, data, processing_due FROM qtable WHERE processing_due < NOW() where processing_due is an integer ...
1
vote
2answers
34 views

why doesn't a simple python producer/consumer multi-threading program speed up by adding the number of workers?

The code below is almost identical to the python official Queue example at http://docs.python.org/2/library/queue.html from Queue import Queue from threading import Thread from time import time ...
0
votes
0answers
12 views

How to throttle a child process and keep it from calling a gateway x amount of times within a second?

First, I have no idea how I would categorize this question or if it should even be asked on SO. If not, my apologizes. I'm just trying to get some insight on my question. Right now, I have a SOAP ...
2
votes
1answer
27 views

synchronization across multiple processes in python

I have a python application that spawns a separate process to do some work (I ran into performance issues using threads due to the GIL (global interpreter lock)). Now what's my methods in python to ...
0
votes
0answers
8 views

queuelinklist time function and display list on second function by time limit

here is pseudo code of what I want to do : 1.capture the time on registration 2.if current time =<15 mints then add patient to list of treated patient here is what i did untill now ,how should i ...
0
votes
2answers
40 views

Gevent queue high CPU usage

Why this code permanently uses 95% of CPU? Producer doesn't sending any request, but cpu is hot. How to lower cpu usage without adding explicit non-zero sleep timeout in consumer greenlet? from ...
1
vote
1answer
50 views

Custom blocking queue locking issue

I am trying to do some custom implementation of blocking queue with fixed length array of byte arrays. I am not removing polled elements, therefore I adjusted put method to return byte array so that ...
-6
votes
0answers
29 views

time of registration need to be captured C++ [closed]

I am writing a program for a clinic now. here is my code ,the problem now is I need to write 2 functions for my program The first function : is to capture time of registration The second ...
0
votes
1answer
8 views

Force an onClick animation to fully complete before running again

I have a slider which controls the position by increasing and decreasing the margin when clicking a button. If you click the button a second time before an animation has completed, it starts from ...
1
vote
4answers
42 views

C# queue objects modified in queue after being enqueued

I have a Queue<object> that I push objects into but if I modify the object after I put it in the queue, the object in the queue also changes. For example object1 = 1; queue.Enqueue(object1); ...
1
vote
2answers
36 views

Insert in a sorted Array-Queue

I'm working on sorted Queues like a Priority Queue. I already did it with a List, and it already worked great. Now I'd like to do it with a array. But I have a little logical Problem with add a new ...
0
votes
2answers
28 views

Jquery Hover Animation Queing

I have built this markup with 3 squares. On hover of any of the squares, the middle horizontal bar will perform 2 animations: animate the margin animate the height I've followed the tutorial ...
-2
votes
0answers
32 views

c# 2 Threads, 1 writes to a “Queue,” 1 reads from the “Queue” [closed]

c# Note: I'm being figurative with the word "Queue" Thread A is sniffing packets on the network. As packets come in, put them into a "Queue" of some sort. Thread B reads the "Queue", does work, and ...
-2
votes
0answers
65 views

Working with a Queue in Java [closed]

For some reason, I do not know why, my queue isn't working correctly. It's kind of weird because I haven't encountered a problem like this maybe someone can help me out? Queue<String> inputs = ...
0
votes
1answer
27 views

How to “listen” to a multiprocessing queue in Python

I will start with the code, I hope it is simple enough: import Queue import multiprocessing class RobotProxy(multiprocessing.Process): def __init__(self, commands_q): ...
1
vote
2answers
51 views

Queue of Thread objects

I am trying to have some Threads on a Queue so I can manage them from there. Is this possible? I have some code but it don't work correctly. The main idea is to generate X threads and put every ...
0
votes
0answers
21 views

LockSupport, waiting main?

I am trying to build my own semaphore (for a class) and I want to put all the "blocked" threads in a FIFO data structure, so then I can put them on ready by just peeking the first who entered and ...
2
votes
2answers
59 views

How to unit test a thread safe queue

I need a simple data structure with these requirements: it should behave like a queue, all the enqueue operations should be atomic. I have very limited experience with multithreading, but this is ...
0
votes
1answer
24 views

how to queue or buffer a series of commands in thread safe manner?

I am sending several command messages through UDP port. how can i queue them in a background safe thread while the program continues its service.. the commands i want to send are like this: ...
0
votes
1answer
21 views

MSMQ as a job queue

I am trying to implement job queue with MSMQ to save up some time on me implementing it in SQL. After reading around I realized MSMQ might not offer what I am after. Could you please advice me if my ...
0
votes
0answers
15 views

iOS. How to prevent queue pause when applicationWillResignActive happens?

When app running, background task begin: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{ ... //some long parser and saving with core data }; In this task parser ...
0
votes
2answers
61 views

Queued Method invocation in its own thread

maybe this functionality is buried somewhere in the .NET-Framework already but I couldn't find it. I need to execute methods in a given order, one after one. The methods should return something (e.g. ...
3
votes
3answers
98 views

How to delete all nodes of same value from linklist/Queue

I have been trying hard to resolve this however yet not succeed I have data structs as follow (which actually is very complex I just simplifies for discussion) : typedef struct node{ struct node* ...
-2
votes
0answers
43 views

How to modify queue array implementation? [closed]

I need to modify the code to handle the full and empty situations, i.e., so that put does nothing if the queue if full and get does nothing if the queue is empty. template <class Item> class ...
0
votes
1answer
20 views

Describe the main methods associated with the Queue abstract data type and discuss their relationship with the stack data structure

I am studying for an exam and I'm a bit confused as to how to answer this question.The way I interpret it is that they want to know the methods of stack which are,offer peek poll size isEmpty and ...
0
votes
1answer
34 views

Queue solution for PHP? [closed]

What is the best tool for queue management in PHP for little tasks, that must be processed in batch. The queue is constantly filled (the aim is to process the clicks of users), and has several ...
0
votes
1answer
23 views

Delphi, message handler and global variables thread-safety

I have one messagehandler in the form like this: procedure TMain_Form.form_message_handler(var MSG: TMessage); begin case MSG.WParam of 0: global_variable:=10; 1: ...
0
votes
0answers
21 views

Get a count of items in TTS Queue (Android)

I've had a look around but I couldn't find a great deal of information - I understand that the TTS functionality in Android is handled in a Queue but I'm struggling to find a way to count the number ...
2
votes
1answer
53 views

Check if element is already in a Queue [duplicate]

I am using the Queue library in python and I want to keep queue entries unique. As such I want to check 'something' isn't already in the queue before adding to it, essentially a function like this ...
0
votes
2answers
30 views

How to handle concurrency by queue/NSThread for UI design, iOS dev

What I am trying to achieve is simple, from first thinking though. I found it hard to handle at last. I would like to push a table view as a selection list, user select one cell and the cell string ...
0
votes
1answer
80 views

Can I use Laravel 4 Queues to process print-jobs on Windows?

This question is a continuation to questions I have asked previously with regard to printing documents via Word on Windows from Laravel. My issue was that I did not want to launch the necessary ...
0
votes
0answers
20 views

CCNet queue not working

I have defined a CCNet queue which is included in several CI projects (about 10). The queue fills up and I can see pending jobs in CCTray and in the dashboard, which are correctly ordered based on ...
0
votes
1answer
38 views

Segfault when accessing non-null pointer? (Queue)

The code works fine in a Linux environment, but in Windows it crashes 5-10 seconds after the program starts. The debugger points to n->fired = true; as the problem? void ...
-2
votes
0answers
32 views

Spotify, add a queue for the webplayer [closed]

I've being using the spotify web client for about 1-2 weeks and I have enjoyed the experience. The thing that is missing and also a kind of signum for spotify is the queue:ing functionality. I'm using ...
0
votes
1answer
63 views

Laravel 4 - how to use the package class as a queue worker

I have built my first Laravel 4 package. I have used artisan to create the structure. I need to use the package to process a queue (as the worker). I am using the builtin Beanstalk queue and have ...
0
votes
1answer
23 views

jQuery Deferred Queue not calling back

I'm having trouble getting a queue of deferred objects to call back when complete. As you can see in the following code, I'm creating a queue (as per this answer: JQuery - $.when syntax for array of ...
4
votes
1answer
62 views

Why does the doubly linked list in sys/queue.h maintain the address of previous next element?

I'm studying sys/queue.h from FreeBSD and I have one question: In sys/queue.h, LIST_ENTRY is defined as follows: #define LIST_ENTRY(type) \ struct { ...
-2
votes
1answer
22 views

Queue mechanism Between WebRole and WorkerRole in Windows Azure Platform [closed]

I am doing project related to windows azure so in which how can I use Queue between web role and worker role????
0
votes
0answers
13 views

How to Read printer queue information using java [duplicate]

Is it possible to get the information from the printer queue and display the information into a document using java codes? And how to make a tray application based on this idea? Help me Thankz for ...
0
votes
0answers
33 views

Copy Queue results in seg fault

I have a function that i traced down to causing a seg fault, but i can't seem to find what i'm doing wrong. I'm trying to use print statements to find where the seg fault occurs, but apparently the ...
0
votes
0answers
43 views

show progress loader while asynchronously loading and processing csv files

My question is quite simple, but I'm having a difficult time figuring out how to go about solving it. As shown in the code below, I am loading 3 csv files and then processing them using queue.js. ...
2
votes
1answer
39 views

Analysing a pseudocode [closed]

Algorithm 1. QUEUESTUFF(n) Input: Integer n 1) Let Q = an empty Queue 2) For i = 1 to n 3) Q.Enqueue(i) 4) End For 5) For i = 1 to n-1 6) Let X = Q.Dequeue() 7) End For 8) Let X = Q.Dequeue() Output: ...

1 2 3 4 5 52