|
|
Answered by
infogulch
Jan 13, 2026
Replies: 1 comment 3 replies
|
This is what I got from browsing the docs:
I guess you have to make a SingleThreadRuntime, then you can get its handle: https://docs.rs/vortex/latest/vortex/io/runtime/single/struct.SingleThreadRuntime.html#method.handle I guess you use a SingleThreadRuntime handle to make a tokio handle if that's what you want. Don't see how to make a multithreaded handle or runtime. 🤷 |
3 replies
Answer selected by
duarten
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is what I got from browsing the docs:
I guess you have to make a SingleThreadRuntime, then you can get its handle:
https://docs.rs/vortex/latest/vortex/io/runtime/single/struct.SingleThreadRuntime.html#method.default
https://docs.rs/vortex/latest/vortex/io/runtime/single/struct.SingleThreadRuntime.html#method.handle
I guess you use a SingleThreadRuntime handle to make a tokio handle if that's what you want. Don't see how to make a multithre…