Materializes a factory of implementations of RawRPC which translate invocations of its raw methods
to invocations of actual methods on rpcImpl.
Materializes a factory of implementations of RawRPC which translate invocations of its raw methods
to invocations of actual methods on rpcImpl. Method arguments and results are serialized and deserialized
from/to RawValue using Reader and Writer typeclasses.
Materializes a factory of implementations of T which are proxies that implement all abstract methods of T
by forwarding them to rawRpc.
Materializes a factory of implementations of T which are proxies that implement all abstract methods of T
by forwarding them to rawRpc. Method arguments and results are serialized and deserialized
from/to RawValue using Reader and Writer typeclasses.
INTERNAL API
INTERNAL API
Mix in this trait into your RPC framework to support remote functions, i.e. methods which asynchronously return some result (
Future[A]whereAhas aReaderandWriter).