|
I use mlua with tokio async framework, use mlua async feature. How can I use mlua async feature with tokio multi-thread ? Thanks. |
Answered by
khvzak
Apr 28, 2022
Replies: 3 comments 1 reply
|
And if I can use |
0 replies
Answer selected by
yongman
|
@khvzak Is it possible to use feature |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to use
LocalSetto execute non-Send futures.And it's not possible to use
evalinstead ofeval_asyncto execute async functions because onlyeval_asyncreturnsFuture.