Searched refs:timeOut (Results 1 – 2 of 2) sorted by relevance
64 public E get(final E defaultValue, final long timeOut) { in get() argument66 return mLatch.await(timeOut, TimeUnit.MILLISECONDS) ? mResult : defaultValue; in get()68 Log.w(mTag, "get() : Interrupted after " + timeOut + " ms"); in get()
61 public void waitForChanges(int count, int timeOut) throws Exception { in waitForChanges() argument65 if (!mNotificationSignal.await(timeOut, TimeUnit.MILLISECONDS)) { in waitForChanges()