rpc

package rpc

Members list

Packages

package rpc.macros

Type members

Classlikes

Attributes

Supertypes
class Object
trait Matchable
class Any
Known subtypes
case class HttpClientBuilder(path: String, getJwt: Option[() => String]) extends ClientBuilder

The HTTP client builder will make HTTP requests using HTTP to the backend. . It will encode the input as the body using upickle and it will parse the output using upickle as well.

The HTTP client builder will make HTTP requests using HTTP to the backend. . It will encode the input as the body using upickle and it will parse the output using upickle as well.

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
final case class HttpMethodCall(name: String, inputJson: String)

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
final case class MethodCall(id: Int, name: String, inputJson: String)

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
final case class MethodResponse(id: Int, value: Value)

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
case class WebsocketClientBuilder(websocketPath: String) extends ClientBuilder

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Types

type Effect[A] = Future[A]
type Streamed[A] = EventStream[A]