Ricardo Padilha
unread,Feb 20, 2012, 10:24:39 AM2/20/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to hawtdispatch
Hi there,
I think I stumble upon a small copy/paste error in
HawtDispatcher.getGlobalQueue(DispatchPriority). Here is the code:
public GlobalDispatchQueue getGlobalQueue(DispatchPriority
priority) {
switch (priority) {
(...)
case LOW:
(...)
LOW_QUEUE = new GlobalDispatchQueue(this,
DispatchPriority.HIGH, threads);
(...)
}
Is the LOW_QUEUE supposed to be created using DispatchPriority.HIGH?
Regards,
Ricardo