Uses of Interface
org.ores.async.Asyncc.Reducer
-
-
Uses of Asyncc.Reducer in org.ores.async
Methods in org.ores.async with parameters of type Asyncc.Reducer Modifier and Type Method Description static <I,T,V,E> void
Asyncc. Reduce(I initialVal, java.util.List<T> tasks, Asyncc.Reducer<V,E> m, Asyncc.IAsyncCallback<V,E> f)
new BeanTranslator.Builder() .translate( newTranslator<String, Integer>
(String.class, Integer.class){ @Override public Integer translate(String instance) { return Integer.valueOf(instance); }}) .build();static <T,V,E> void
Asyncc. Reduce(java.util.List<T> tasks, Asyncc.Reducer<V,E> m, Asyncc.IAsyncCallback<V,E> f)
static <I,T,V,E> void
Asyncc. ReduceRight(I initialVal, java.util.List<T> tasks, Asyncc.Reducer<V,E> m, Asyncc.IAsyncCallback<V,E> f)
static <T,V,E> void
Asyncc. ReduceRight(java.util.List<T> tasks, Asyncc.Reducer<V,E> m, Asyncc.IAsyncCallback<V,E> f)
-