sure, here's the thing: there's a KeyUpHandler in my MultivalueSuggestBox that runs search if the key was ENTER.
Let's say the suggest timer is 1sec. What happens when i type a keyword and press enter in less than 300ms?
I run search for that keyword and then after 1sec the suggest timer elapses and gets suggestions. In this case
i don't want suggestions, i already know what i want to search for and run my search.
So, I'd like to cancel the RestSuggestOracle.m_timer in a MultivalueSuggestBox.addKeyUpHandler, but it's private.
You see what I mean?