blob: c8ede56a7dfd16ed9f1a60ed1742ee6acbffd787 [file] [log] [blame]
package com.alibaba.dubbo.rpc.benchmark;
/**
* nfs-rpc
* Apache License
*
* http://code.google.com/p/nfs-rpc (c) 2011
*/
import java.io.Serializable;
/**
* Just for RPC Benchmark Test,response object
*
* @author <a href="mailto:bluedavy@gmail.com">bluedavy</a>
*/
public class ResponseObject implements Serializable {
private static final long serialVersionUID = 1L;
private byte[] bytes = null;
public ResponseObject(int size){
bytes = new byte[size];
}
public byte[] getBytes() {
return bytes;
}
}