LocalEndpoint

abstract class LocalEndpoint[I, O](name: String)(implicit evidence$1: ClassTag[I], evidence$2: Encoder[I], evidence$3: Decoder[I], evidence$4: Encoder[O], evidence$5: Decoder[O]) extends AbstractEndpoint[I, O]
class AbstractEndpoint[I, O]
class Object
trait Matchable
class Any
class LocalApi

Value members

Abstract methods

def localHandle(ctx: ActorContext[_], i: I): ResponseWithStatus[O]

Concrete methods

def call(ctx: ActorContext[_], i: I, timeout: Duration, customeRequestId: Option[String]): Future[Try[O]]
def callJson(ctx: ActorContext[_], i: Json, timeout: Duration, customeRequestId: Option[String]): Future[Try[O]]
def startLocal(ctx: ActorContext[_]): LocalEndpoint.this.type
def tell(ctx: ActorContext[_], i: I, customeRequestId: Option[String]): Unit
def tellJson(ctx: ActorContext[_], i: Json, customeRequestId: Option[String]): Unit

Inherited methods

def clientInit(ctx: ActorContext[_]): AbstractEndpoint.this.type
Inherited from:
AbstractEndpoint
def prepareRequest(requestId: String, timeout: Duration): Promise[Try[O]]
Inherited from:
AbstractEndpoint
def requestIdFromOption(requestId: Option[String]): String
Inherited from:
AbstractEndpoint

Inherited fields

var callable: Boolean
Inherited from:
AbstractEndpoint
protected var callbackActor: ActorRef[String]
Inherited from:
AbstractEndpoint
protected val requests: TrieMap[String, (ZonedDateTime, Promise[Try[O]])]
Inherited from:
AbstractEndpoint