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

net.dubboclub.akka.remoting.message.ResponsePackage Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package net.dubboclub.akka.remoting.message;

import java.io.Serializable;

/**
 * Created by bieber on 2015/7/10.
 */
public class ResponsePackage implements Serializable{

    private long id;

    private byte[] responseMessage;

    public ResponsePackage(long id,byte[] responseMessage) {
        this.responseMessage = responseMessage;
    }

    public long getId() {
        return id;
    }

    public byte[] getResponseMessage() {
        return responseMessage;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy