-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Vote to make it open-source] Object pools #241
Comments
If #243 is done, this is no longer needed |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
bump since it is #242's dependency |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new issue. |
Avoid transfering large objects or even non-serializable objects (e.g. with a mutex) between Rust and Dart. Instead, let it always live in Rust, and Dart only gets an integer as a handle.
Remark: I have written and used it internally in my project (in production environment). If you need to use it, I can make it open-source.
The text was updated successfully, but these errors were encountered: