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
You can't call the .call() method on autowire.`package`.unwrapClientProxy[model.Api, java.nio.ByteBuffer, boopickle.Default.Pickler, boopickle.Default.Pickler](client.AutowireClient.apply[model.Api]).exec[M, C](cmds)(evidence$1, evidence$2), only on autowired function calls.
[error] AutowireClient[Api].exec[M, C](cmds).call().toRx.map {```
The text was updated successfully, but these errors were encountered:
Here's a workaround I ended up using. I got rid of all the type parameters, and just used type members instead, passing in subclasses that have the requisite type members as necessary to help with type inference.
I had a working API that looked like
with the js implementation of
exec
being:In an attempt to generify things a bit, I changed the API's
exec
signature to:and the implementation to:
This results in the compile error:
The text was updated successfully, but these errors were encountered: