mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Added consumer thread timeout
This commit is contained in:
parent
9a32ec8a31
commit
e6a8ba41fd
@ -24,7 +24,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: UpdateAggregator.java,v 1.1 2010/03/26 09:27:58 fros4943 Exp $
|
||||
* $Id: UpdateAggregator.java,v 1.2 2010/03/26 10:11:50 nifi Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.dialogs;
|
||||
@ -121,7 +121,7 @@ public abstract class UpdateAggregator<A> {
|
||||
while (pending.size() > maxPending) {
|
||||
/* Delay producer thread; events are coming in too fast */
|
||||
EventQueue.invokeLater(consume); /* Request immediate consume */
|
||||
wait();
|
||||
wait(t.getDelay());
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user