net.hasor.rsf.hprose.server.Message Maven / Gradle / Ivy
The newest version!
/**********************************************************\
| |
| 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;
}
}