It would be nice to have Uninterruptibles support for Condition.await() and overlaods. So we could write ``` lock.lock(); try{ awaitUninterrutibly(condition,1,MINUTE); }finally{ lock.unlock(); } ```