diff --git a/docs/features/threading.md b/docs/features/threading.md index 1eb55510..49afee46 100644 --- a/docs/features/threading.md +++ b/docs/features/threading.md @@ -137,4 +137,8 @@ Frame: 2 Frame: 3 Frame: 4 World Generation Complete 3 10000 10 -``` \ No newline at end of file +``` + +`ComputeThread` used `pickle` module to serialize the data between threads. +So parameters and return values must be supported by `pickle`. +See [pickle](https://pocketpy.dev/modules/pickle/) for more details.