You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please, let introduce queryasync* and composite queryasync* functions (without the right to modify actor-level variables or call non-query functions) that would be callable from query and composite query. composite query async* functions should have the right to call query and composite query functions.
compositequeryfunc f(): async* {
await x.g(); // g is a query function
};
Without this feature, need to write a query/composite query function as a "monolith", without splitting it into async* functions, what is both inconvenient and likely produces longer WASM code.
The text was updated successfully, but these errors were encountered:
Please, let introduce
query
async*
andcomposite query
async*
functions (without the right to modify actor-level variables or call non-query functions) that would be callable fromquery
andcomposite query
.composite query async*
functions should have the right to callquery
andcomposite query
functions.Without this feature, need to write a
query
/composite query
function as a "monolith", without splitting it intoasync*
functions, what is both inconvenient and likely produces longer WASM code.The text was updated successfully, but these errors were encountered: