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
The docs mentioned handling this is a client side responsibility, so maybe this is actually a codegen bug.
Currently, flow control is only implemented in the C++ library. RPC implementations in other languages will treat -> stream the same as -> () until they add explicit support for it.
If you define a schema with
List(Interface)
then:val a_get_list : t -> [`Interface_xxx] list
instead of
val a_get_list : t -> [`Interface_xxx] Capability.t list
failwith "not implemented (type iface)"
.As a workaround, you can use a list of structs containing interfaces instead.
The text was updated successfully, but these errors were encountered: