gissuebot
gissuebot
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1073#c1) posted by **[email protected]** on 2012-07-19 at 05:49 AM_ --- You can be sure we've been eager to do so, but AFAIK we can't until we are ready to...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1073#c2) posted by **electrum** on 2012-07-19 at 06:47 AM_ --- Wouldn't this only require 1.7 for compiling? The annotation should be ignored if the annotation definition is not available.
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1073#c3) posted by **[email protected]** on 2012-07-19 at 06:50 AM_ --- Unfortunately (or fortunately depending on how you look at it), the annotation is itself annotated with @Retention(value=RUNTIME) So it...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1073#c4) posted by **wasserman.louis** on 2012-07-19 at 09:58 AM_ --- Ew. That said, I wonder if the funky bootstrap technique we used to make Java 5/6 compatible might be...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1073#c5) posted by **[email protected]** on 2012-07-19 at 03:15 PM_ --- That was just a testing technique. And re #2, if you can come up with some hackery that allows...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1519#c1) posted by **[email protected]** on 2014-08-13 at 01:49 PM_ --- An internal user would like to be able to access the result as a Future<ImmutableList<V>> rather than a Future<PlainListThatHappensToBeImpossibleToMutate<V>>....
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1421#c1) posted by **[email protected]** on 2013-05-22 at 03:09 PM_ --- Though we've stayed away from Function2 and friends (<https://code.google.com/p/guava-libraries/wiki/IdeaGraveyard#Functions/Predicates_for_n_%3E=_2_inputs>), we can find other ways of merging Futures: final ListenableFuture<A>...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1421#c2) posted by **kristofer.karlsson** on 2013-05-22 at 03:19 PM_ --- Thanks for quick response. But if that's the route you're going for it, I could just wrap things as...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1421#c3) posted by **[email protected]** on 2013-05-22 at 03:27 PM_ --- Yep, allAsList+transform is pretty much how ours is implemented. (As it turns out, ours (a) uses successfulAsList so that...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=1421#c4) posted by **pettermahlen** on 2014-01-31 at 09:24 AM_ --- We've created a framework that aims to simplify the problem of working with non-trivial asynchronous call graphs: https://github.com/spotify/trickle. It...