Right now I am trying to create a producer/consumer thread, the producer thread goes through all possible combinations of letters and creates their respective MD5 hashes. Then each combination and its hash is put into the HashMap<String,String>. Now in my consumer thread I want to be able to use the Queue<> collection on the hashmap so my consumer thread may call poll() etc thus removing values atc like a Queue but still giving me the capability of seeing both the combination and its hash when calling poll() How would I go about doing this? I have the HashMap but dont know how to 'make' or cast it as a Queue.
Thanks.
|
|
||||
|
|
|
You should not use a HashMap without handling the thread-safety of your code. Else, you may end with a Live-lock. To be able to iterate your Map with the order in which keys were inserted, you can use a LinkedHashMap.
The procuder would push entries like this (nothing special):
The consumer would poll entries like this:
|
|||
|
|
The
which will give you back the first element. Just make sure to synchronize appropriately. Alternatively, you could consider just storing key/value pairs inside a Hope this helps! |
|||||||||||
|
|
I suggest you create a Queue of EntrySet -
You can consider using another type of queue, which lets you put the elements, and only the prdocuer waits in case of non empty such as LinkedBlockingQueue. |
|||
|
