add demo for network IO

This commit is contained in:
2025-03-10 14:15:47 +08:00
parent 1aa6a5c006
commit 8ac38e1453
2 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package io;
public record FileChunkInitReq(
String fileName,
String identifier,
Long totalSize,
Long chunkSize
) {
}