trait FunctionRPCFramework extends RPCFramework
Mix in this trait into your RPC framework to support remote functions, i.e. methods which asynchronously
return some result (Future[A]
where A
has a Reader
and Writer
).
- Alphabetic
- By Inheritance
- FunctionRPCFramework
- RPCFramework
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
AsRawRPC[RealRPC] = AsRaw[RawRPC, RealRPC]
- Definition Classes
- RPCFramework
-
type
AsRawRealRPC[RealRPC] = AsRawReal[RawRPC, RealRPC]
- Definition Classes
- RPCFramework
-
type
AsRealRPC[RealRPC] = AsReal[RawRPC, RealRPC]
- Definition Classes
- RPCFramework
-
abstract
type
FullRPCInfo[RealRPC] <: BaseFullRPCInfo[RealRPC]
This type must be defined as trait or class by an RPCFramework in order to be able to use it's RPCCompanion.
This type must be defined as trait or class by an RPCFramework in order to be able to use it's RPCCompanion. The fact that every RPCFramework may define its own trait or class for FullRPCInfo helps ScalaJS DCE distinguish between instances of AsRawRPC, AsRealRPC and RPCMetadata for different frameworks and to get rid of unused instances.
- Definition Classes
- RPCFramework
object SomeRPCFramework extends RPCFramework { abstract class FullRPCInfo[RealRPC] extends BaseFullRPCInfo[RealRPC] ... }
Example: - trait FunctionRawRPC extends AnyRef
- case class FunctionSignature[T](name: String, paramMetadata: List[FunctionRPCFramework.ParamMetadata[_]], annotations: List[MetadataAnnotation], resultTypeMetadata: FunctionRPCFramework.ResultTypeMetadata[T]) extends Signature with TypedMetadata[commons.Future[T]] with Product with Serializable
-
abstract
type
ParamTypeMetadata[T]
- Definition Classes
- RPCFramework
-
abstract
type
RPCMetadata[RealRPC]
- Definition Classes
- RPCFramework
-
abstract
type
RawRPC <: FunctionRawRPC
- Definition Classes
- FunctionRPCFramework → RPCFramework
-
abstract
type
RawValue
- Definition Classes
- RPCFramework
-
abstract
type
Reader[T]
- Definition Classes
- RPCFramework
-
abstract
type
ResultTypeMetadata[T]
- Definition Classes
- RPCFramework
-
abstract
type
Writer[T]
- Definition Classes
- RPCFramework
-
trait
BaseFullRPCInfo[RealRPC] extends AnyRef
Base trait for traits or classes "implementing" FullRPCInfo in various RPC frameworks.
Base trait for traits or classes "implementing" FullRPCInfo in various RPC frameworks. Having a separate subtrait/subclass for every framework is beneficial for ScalaJS DCE.
- Definition Classes
- RPCFramework
-
trait
BaseRawRpcCompanion extends RawRpcCompanion[RawRPC]
- Definition Classes
- RPCFramework
-
case class
ParamMetadata[T](name: String, annotations: List[MetadataAnnotation], typeMetadata: ParamTypeMetadata[T]) extends TypedMetadata[T] with Product with Serializable
- Definition Classes
- RPCFramework
-
abstract
class
RPCCompanion[RealRPC] extends AnyRef
Convenience abstract class for companion objects of RPC interfaces.
Convenience abstract class for companion objects of RPC interfaces. Makes sure all three RPC type classes (AsRawRPC, AsRealRPC and RPCMetadata) are macro-materialized for that RPC interface and confines macro materialization to the same compilation unit where the RPC interface is defined. This is a good practice to avoid incremental compilation problems and duplication of macro-generated code in various callsites. In order to be able to use RPCCompanion, the RPC framework must define FullRPCInfo as a trait or class. Additionally, some special wizardry has been employed to make sure that when an RPC interface is a part of shared (cross-compiled) code of a ScalaJS application then ScalaJS optimizer can remove unused instances of macro generated typeclasses.
- Definition Classes
- RPCFramework
object SomeRPCFramework extends StandardRPCFramework { ... } @RPC trait SomeRPC { def doSomething(str: String): Unit def callSomething(int: Int): Future[String] } object SomeRPC extends SomeRPCFramework.RPCCompanion[SomeRPC]
Example: -
case class
RawInvocation(rpcName: String, args: List[RawValue]) extends Product with Serializable
- Definition Classes
- RPCFramework
-
trait
Signature extends AnyRef
- Definition Classes
- RPCFramework
Abstract Value Members
-
abstract
val
RPCMetadata: RpcMetadataCompanion[RPCMetadata]
- Definition Classes
- RPCFramework
-
abstract
val
RawRPC: BaseRawRpcCompanion
- Definition Classes
- RPCFramework
-
abstract
def
read[T](raw: RawValue)(implicit arg0: Reader[T]): T
- Definition Classes
- RPCFramework
-
abstract
def
write[T](value: T)(implicit arg0: Writer[T]): RawValue
- Definition Classes
- RPCFramework
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
macro
def
materializeAsRaw[T]: AsRawRPC[T]
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.- Definition Classes
- RPCFramework
-
macro
def
materializeAsRawReal[T]: AsRawRealRPC[T]
- Definition Classes
- RPCFramework
-
macro
def
materializeAsReal[T]: AsRealRPC[T]
Materializes a factory of implementations of
T
which are proxies that implement all abstract methods ofT
by forwarding them torawRpc
.Materializes a factory of implementations of
T
which are proxies that implement all abstract methods ofT
by forwarding them torawRpc
. Method arguments and results are serialized and deserialized from/to RawValue using Reader and Writer typeclasses.- Definition Classes
- RPCFramework
-
implicit macro
def
materializeFullInfo[T]: FullRPCInfo[T]
- Definition Classes
- RPCFramework
-
macro
def
materializeMetadata[RealRPC]: RPCMetadata[RealRPC]
- Definition Classes
- RPCFramework
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
implicit
def
readerBasedAsReal[T](implicit arg0: Reader[T]): AsReal[RawValue, T]
- Definition Classes
- RPCFramework
- implicit def readerBasedFutureAsReal[T](implicit arg0: Reader[T]): AsReal[commons.Future[RawValue], commons.Future[T]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
implicit
def
writerBasedAsRaw[T](implicit arg0: Writer[T]): AsRaw[RawValue, T]
- Definition Classes
- RPCFramework
- implicit def writerBasedFutureAsRaw[T](implicit arg0: Writer[T]): AsRaw[commons.Future[RawValue], commons.Future[T]]
-
object
AsRawRPC
- Definition Classes
- RPCFramework
-
object
AsRawRealRPC
- Definition Classes
- RPCFramework
-
object
AsRealRPC
- Definition Classes
- RPCFramework
-
object
RawInvocation extends Serializable
- Definition Classes
- RPCFramework