Package

com.avsystem.commons

rpc

Permalink

package rpc

Visibility
  1. Public
  2. All

Type Members

  1. trait FunctionRPCFramework extends RPCFramework

    Permalink

    Mix in this trait into your RPC framework to support remote functions, i.e.

    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).

  2. trait GetterRPCFramework extends RPCFramework

    Permalink

    Mix in this trait into your RPC framework to support getters, i.e.

    Mix in this trait into your RPC framework to support getters, i.e. methods that return RPC subinterfaces

  3. sealed trait IsRPC[T] extends AnyRef

    Permalink

    Typeclass that witnesses if type T is annotated as @RPC

  4. trait MetadataAnnotation extends Annotation with StaticAnnotation

    Permalink

    Annotations that extend this trait will be retained for runtime in RPCMetadata typeclass instances

  5. trait OneWayRPCFramework extends GetterRPCFramework with ProcedureRPCFramework

    Permalink
  6. case class ParamMetadata(name: String, annotations: List[MetadataAnnotation]) extends Product with Serializable

    Permalink
  7. trait ProcedureRPCFramework extends RPCFramework

    Permalink

    Mix in this trait into your RPC framework to support remote procedures, i.e.

    Mix in this trait into your RPC framework to support remote procedures, i.e. fire-and-forget methods with Unit return type.

  8. trait RPCFramework extends AnyRef

    Permalink

    Author: ghik Created: 27/05/15.

  9. trait RPCMetadata[T] extends AnyRef

    Permalink
  10. case class Signature(methodName: String, paramMetadata: List[List[ParamMetadata]], annotations: List[MetadataAnnotation]) extends Product with Serializable

    Permalink
  11. trait StandardRPCFramework extends GetterRPCFramework with FunctionRPCFramework with ProcedureRPCFramework

    Permalink

Value Members

  1. object IsRPC

    Permalink
  2. object RPCMetadata

    Permalink

    Author: ghik Created: 25/02/16.

Ungrouped