-
|
|
Beta Was this translation helpful? Give feedback.
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. 🤷 |
Beta Was this translation helpful? Give feedback.
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…