All Questions
Tagged with concurrency stack
7 questions
0
votes
1
answer
79
views
Delayed, concurrent event stack in Java - follow-up
I have slightly refactored the Delayed, concurrent event stack in Java. Now it looks like this:
DelayedEventStack.java
...
0
votes
3
answers
212
views
Delayed, concurrent event stack in Java
(See the next iteration:
Delayed, concurrent event stack in Java - follow-up )
Motivation
I was confronted with a task of having "message events" for a GUI program. The use case is as ...
1
vote
1
answer
1k
views
Concurrent Queue with enqueue and dequeue using Stack as underlying data structure
This is a mix of data structure and multi threading concept based question. (This is only for understanding and learning purpose) The language for the solution : Java
A Queue with FIFO behavior needs ...
2
votes
1
answer
251
views
Stack for asynchronous processing
The following TaskStack processes input elements asynchronously based on a function that it receives at construction:
...
5
votes
2
answers
2k
views
Concurrency-safe stack implementation in Go
As Go doesn't come with a lot of collection structures, I've implemented stacks myself, building off some sample code I found floating around. I've then tried to extend it further by:
Making a "...
0
votes
2
answers
4k
views
Concurrent Stack with blocking and non-blocking methods
I wrote it this just for learning. Is there holes at this code?
...
1
vote
1
answer
632
views
Concurrent blocking stack
I just want to train before interview. I googled concurrency interview questions and one of the question was write concurrent ready stack.
...