Packages

t

com.lightbend.lagom.internal.api.transport

LagomServiceApiBridge

trait LagomServiceApiBridge extends AnyRef

Source
LagomServiceApiBridge.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LagomServiceApiBridge
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type AkkaStreamsSource[T, M]
  2. abstract type Call[Request, Response]
  3. abstract type CallId
  4. abstract type Descriptor
  5. abstract type ErrorCode
  6. abstract type ExceptionSerializer
  7. abstract type FutureType[T]
  8. abstract type HeaderFilter
  9. abstract type MessageHeader
  10. abstract type MessageProtocol
  11. abstract type MessageSerializer[M, W]
  12. abstract type Method
  13. abstract type NegotiatedDeserializer[M, W]
  14. abstract type NegotiatedSerializer[M, W]
  15. abstract type RawExceptionMessage
  16. abstract type RequestHeader <: MessageHeader
  17. abstract type ResponseHeader <: MessageHeader
  18. abstract type ServiceCall[Request, Response]
  19. abstract type ServiceLocator

Abstract Value Members

  1. abstract def akkaStreamsSourceAsScala[T, M](source: AkkaStreamsSource[T, M]): Source[T, M]
  2. abstract def callRequestSerializer[Request, W](call: Call[Request, _]): MessageSerializer[Request, W]
  3. abstract def callResponseSerializer[Response, W](call: Call[_, Response]): MessageSerializer[Response, W]
  4. abstract def descriptorExceptionSerializer(d: Descriptor): ExceptionSerializer
  5. abstract def descriptorHeaderFilter(d: Descriptor): HeaderFilter
  6. abstract def descriptorName(d: Descriptor): String
  7. abstract def exceptionSerializerDeserializeHttpException(es: ExceptionSerializer, code: Int, mp: MessageProtocol, bytes: ByteString): Throwable
  8. abstract def exceptionSerializerDeserializeWebSocketException(es: ExceptionSerializer, code: Int, mp: MessageProtocol, bytes: ByteString): Throwable
  9. abstract def exceptionSerializerSerialize(es: ExceptionSerializer, t: Throwable, accept: Seq[MessageProtocol]): RawExceptionMessage
  10. abstract def headerFilterTransformClientRequest(hf: HeaderFilter, rh: RequestHeader): RequestHeader
  11. abstract def headerFilterTransformClientResponse(hf: HeaderFilter, resp: ResponseHeader, req: RequestHeader): ResponseHeader
  12. abstract def headerFilterTransformServerRequest(hf: HeaderFilter, rh: RequestHeader): RequestHeader
  13. abstract def headerFilterTransformServerResponse(hf: HeaderFilter, resp: ResponseHeader, req: RequestHeader): ResponseHeader
  14. abstract def messageHeaderHeaders(mh: MessageHeader): Map[String, Seq[(String, String)]]
  15. abstract def messageHeaderProtocol(mh: MessageHeader): MessageProtocol
  16. abstract def messageProtocolCharset(mp: MessageProtocol): Option[String]
  17. abstract def messageProtocolContentType(mp: MessageProtocol): Option[String]
  18. abstract def messageProtocolFromContentTypeHeader(ct: Option[String]): MessageProtocol
  19. abstract def messageProtocolIsText(mp: MessageProtocol): Boolean
  20. abstract def messageProtocolIsUtf8(mp: MessageProtocol): Boolean
  21. abstract def messageProtocolToContentTypeHeader(mp: MessageProtocol): Option[String]
  22. abstract def messageSerializerAcceptResponseProtocols(ms: MessageSerializer[_, _]): Seq[MessageProtocol]
  23. abstract def messageSerializerDeserializer[M, W](ms: MessageSerializer[M, W], mp: MessageProtocol): NegotiatedDeserializer[M, W]
  24. abstract def messageSerializerIsStreamed(ms: MessageSerializer[_, _]): Boolean
  25. abstract def messageSerializerIsUsed(ms: MessageSerializer[_, _]): Boolean
  26. abstract def messageSerializerSerializerForRequest[M, W](ms: MessageSerializer[M, W]): NegotiatedSerializer[M, W]
  27. abstract def messageSerializerSerializerForResponse[M, W](ms: MessageSerializer[M, W], ap: Seq[MessageProtocol]): NegotiatedSerializer[M, W]
  28. abstract def methodForCall(call: Call[_, _]): Method
  29. abstract def methodName(m: Method): String
  30. abstract def negotiatedDeserializerDeserialize[M, W](ns: NegotiatedDeserializer[M, W], w: W): M
  31. abstract def negotiatedSerializerProtocol(ns: NegotiatedSerializer[_, _]): MessageProtocol
  32. abstract def negotiatedSerializerSerialize[M, W](ns: NegotiatedSerializer[M, W], m: M): W
  33. abstract def newMessageProtocol(ct: Option[String], cs: Option[String], v: Option[String]): MessageProtocol
  34. abstract def newMethod(name: String): Method
  35. abstract def newPayloadTooLarge(msg: String): Throwable
  36. abstract def newPolicyViolation(msg: String, detail: String): Throwable
  37. abstract def newRawExceptionMessage(errorCode: ErrorCode, protocol: MessageProtocol, message: ByteString): RawExceptionMessage
  38. abstract def newRequestHeader(method: Method, uri: URI, requestProtocol: MessageProtocol, acceptResponseProtocols: Seq[MessageProtocol], servicePrincipal: Option[Principal], headers: Map[String, Seq[(String, String)]]): RequestHeader
  39. abstract def newResponseHeader(code: Int, mp: MessageProtocol, headers: Map[String, Seq[(String, String)]]): ResponseHeader
  40. abstract def newServicePrincipal(serviceName: String): Principal
  41. abstract def newTransportException(errorCode: ErrorCode, message: String): Exception
  42. abstract def rawExceptionMessageErrorCode(rem: RawExceptionMessage): ErrorCode
  43. abstract def rawExceptionMessageMessage(rem: RawExceptionMessage): ByteString
  44. abstract def rawExceptionMessageMessageAsText(rem: RawExceptionMessage): String
  45. abstract def rawExceptionMessageToResponseHeader(rem: RawExceptionMessage): ResponseHeader
  46. abstract def rawExceptionMessageWebSocketCode(rem: RawExceptionMessage): Int
  47. abstract def requestHeaderAcceptedResponseProtocols(rh: RequestHeader): Seq[MessageProtocol]
  48. abstract def requestHeaderMethod(rh: RequestHeader): String
  49. abstract def requestHeaderUri(rh: RequestHeader): URI
  50. abstract def responseHeaderIsDefault(rh: ResponseHeader): Boolean
  51. abstract def responseHeaderStatus(rh: ResponseHeader): Int
  52. abstract def responseHeaderWithProtocol(rh: ResponseHeader, mp: MessageProtocol): ResponseHeader
  53. abstract def serviceLocatorDoWithService[T](serviceLocator: ServiceLocator, descriptor: Descriptor, call: Call[_, _], block: (URI) ⇒ Future[T])(implicit ec: ExecutionContext): Future[Option[T]]
  54. abstract def toAkkaStreamsSource[T, M](source: Source[T, M]): AkkaStreamsSource[T, M]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to any2stringadd[LagomServiceApiBridge] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (LagomServiceApiBridge, B)
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to ArrowAssoc[LagomServiceApiBridge] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def ensuring(cond: (LagomServiceApiBridge) ⇒ Boolean, msg: ⇒ Any): LagomServiceApiBridge
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to Ensuring[LagomServiceApiBridge] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (LagomServiceApiBridge) ⇒ Boolean): LagomServiceApiBridge
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to Ensuring[LagomServiceApiBridge] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): LagomServiceApiBridge
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to Ensuring[LagomServiceApiBridge] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): LagomServiceApiBridge
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to Ensuring[LagomServiceApiBridge] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to StringFormat[LagomServiceApiBridge] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. def [B](y: B): (LagomServiceApiBridge, B)
    Implicit
    This member is added by an implicit conversion from LagomServiceApiBridge to ArrowAssoc[LagomServiceApiBridge] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from LagomServiceApiBridge to any2stringadd[LagomServiceApiBridge]

Inherited by implicit conversion StringFormat from LagomServiceApiBridge to StringFormat[LagomServiceApiBridge]

Inherited by implicit conversion Ensuring from LagomServiceApiBridge to Ensuring[LagomServiceApiBridge]

Inherited by implicit conversion ArrowAssoc from LagomServiceApiBridge to ArrowAssoc[LagomServiceApiBridge]

Ungrouped