The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
428 views

When designing a job queue, what should determine the scope of a job?

We've got a job queue system that'll cheerfully process any kind of job given to it. We intend to use it to process jobs that each contain 2 tasks: Job (Pass information from one server to another) ...
5
votes
11answers
2k views

What are some good, simple examples for queues?

I'm teaching CS2 (Java and data structures), and am having some difficulty coming up with good examples to use when teaching queues. The two major applications I use them for are multithreaded message ...
5
votes
2answers
232 views

Use Queue<T> or stick to native f# lists

I need something that represents a queue in F#. The queue will be filled with items once, and (as the application progresses) items will be taken from this queue and moved to other lists. Should I ...
2
votes
2answers
382 views

How to increase the efficiency of an Immutable Queue in java?

I have been developing an Immutable queue in java, but the version I have developed is supposedly slow and I have been suggested to create a faster version of the same and I have no idea as to how to ...
1
vote
0answers
96 views

Java blocking on multiple queues [migrated]

I'm not a very experienced Java programmer, so forgive me if this is a bit of a newbie question. I'm designing a system that consists broadly of 3 modules. A client, a server and an application. ...