root / src / Message / PutChunkMsg.java @ 2
History | View | Annotate | Download (299 Bytes)
1 |
package Message; |
---|---|
2 |
|
3 |
import Message.Message; |
4 |
|
5 |
public class PutChunkMsg extends Message { |
6 |
|
7 |
public PutChunkMsg(MessageType type, String version, int senderId, String fileID, int chunkNo, int repDegree, byte[] body) { |
8 |
super(type, version, senderId, fileID, chunkNo, repDegree, body);
|
9 |
} |
10 |
|
11 |
} |