in src/main/java/com/twitter/nodes/utils/Futures.java [44:50]
public static boolean completedWithSuccess(Future<?> future) {
try {
return future.isDefined() && Await.result(future.liftToTry()).isReturn();
} catch (Exception e) {
return com.twitter.util.Throwables.unchecked(e);
}
}