view src/main/java/alice/datasegment/DataSegmentValue.java @ 458:bcf6f4a6fcd0 dispose

need set Meta DataSegment PUT API
author sugi
date Mon, 03 Nov 2014 17:12:53 +0900
parents f68d103498e0
children 6e304a7a60e7
line wrap: on
line source

package alice.datasegment;

public class DataSegmentValue {

    public int index;
    public ReceiveData rData;
    public String from;

    public DataSegmentValue(int index, ReceiveData rData, String reverseKey) {
        this.index = index;
        this.rData = rData;
        this.from = reverseKey;
    }
    
}