Project

General

Profile

Statistics
| Revision:

root / src / Message / GetChunkMsg.java @ 2

History | View | Annotate | Download (239 Bytes)

1 2 up20160340
package Message;
2
3
4
public class GetChunkMsg extends Message {
5
6
    public GetChunkMsg(String version, int senderId, String fileID, int chunkNo){
7
        super(MessageType.GETCHUNK, version, senderId, fileID, chunkNo, null, null);
8
    }
9
10
}