object Descriptor
- Source
- Descriptor.scala
- Alphabetic
- By Inheritance
- Descriptor
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
sealed
trait
Call[Request, Response] extends AnyRef
Describes a service call.
-
sealed
trait
CallId extends AnyRef
A call identifier.
A call identifier.
Call identifiers can be a simple name, or can be more complex identifiers that use REST methods and paths to extract information and correspondingly route calls.
-
sealed
trait
NamedCallId extends CallId
A named call identifier.
-
sealed
trait
PathCallId extends CallId
A path based call identifier.
-
sealed
trait
Properties[Message] extends AnyRef
Properties of a topic call.
-
sealed
trait
Property[-Message, T] extends AnyRef
A property.
-
sealed
trait
RestCallId extends CallId
A REST/HTTP call identifier.
-
trait
ServiceCallHolder extends AnyRef
Holds the service call itself.
Holds the service call itself.
The implementations of this are intentionally opaque, as the mechanics of how the service call implementation gets passed around is internal to Lagom.
-
sealed
trait
TopicCall[Message] extends AnyRef
Describes a message broker topic.
-
trait
TopicHolder extends AnyRef
Holds the topic implementation.
Holds the topic implementation.
The implementations of this are intentionally opaque, as the mechanics of how the service call implementation gets passed around is internal to Lagom.
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
- val NoCall: Call[NotUsed, NotUsed]
- def apply(name: String): Descriptor
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[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
-
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()
-
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
- @throws( ... ) @native()
- object NamedCallId
- object PathCallId
- object Properties
- object Property
- object RestCallId