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

hprose.server.Message Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * Message.java                                           *
 *                                                        *
 * push message class for Java.                           *
 *                                                        *
 * LastModified: May 3, 2016                              *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/

package hprose.server;

import hprose.util.concurrent.Promise;

class Message {
    public final Promise detector;
    public final Object result;
    public Message(Promise detector, Object result) {
        this.detector = detector;
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy