All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hprose.util.concurrent.Reducer Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * Handler.java                                           *
 *                                                        *
 * Handler interface for Java.                            *
 *                                                        *
 * LastModified: Apr 11, 2016                             *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/
package hprose.util.concurrent;


public interface Reducer {
    R call(R prev, T element, int index) throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy