Groups multiple Deferreds together in a single one. This is the same thing as #group(Collection) except that we guarantee we preserve the order of the Deferreds. @param deferreds All the Deferreds to group together. @return A new Deferred that will be call
(final Collection<Deferred<T>> deferreds)
| 906 | * @since 1.4 |
| 907 | */ |
| 908 | public static <T> |
| 909 | Deferred<ArrayList<T>> groupInOrder(final Collection<Deferred<T>> deferreds) { |
| 910 | return new DeferredGroup<T>(deferreds, true).getDeferred(); |
| 911 | } |
| 912 | |
| 913 | /** |
| 914 | * Groups two {@code Deferred}s together in a single one. |
nothing calls this directly
no test coverage detected