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

hprose.common.InvokeHandler Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * InvokeHandler.java                                     *
 *                                                        *
 * hprose InvokeHandler interface for Java.               *
 *                                                        *
 * LastModified: Jul 3, 2016                              *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/

package hprose.common;

import hprose.util.concurrent.Promise;

public interface InvokeHandler {
    Promise handle(String name, Object[] args, HproseContext context, NextInvokeHandler next);
}