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

hprose.common.NextInvokeHandler Maven / Gradle / Ivy

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

package hprose.common;

import hprose.util.concurrent.Promise;

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