GWT (2.5) emulates AbstractQueue but provides no implementations. Google Guava (13.0.1) provides the Queues class but it isn’t GwtCompatible.
Before I proceed to implement my own GWT queue, am I missing an available implementation somewhere?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The LinkedList class is emulated by GWT and implements the Queue interface. GWT emulates all the key queue methods, including
add()andremove(), thus making it perfectly usable as a queue.