view src/main/java/alice/datasegment/DataSegmentValue.java @ 531:b6049fb123d8 dispose

resolve unzip, working TestRemoteAlice
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Sun, 03 May 2015 15:58:31 +0900
parents 6e304a7a60e7
children
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;
    }

}