package location
- Alphabetic
- Public
- All
Type Members
-
final
case class
AkkaLocation(connection: AkkaConnection, maybePrefix: Option[String], uri: URI, actorRef: ActorRef[Nothing], logAdminActorRef: ActorRef[Nothing]) extends Location with Product with Serializable
Represents a live Akka connection of an Actor
Represents a live Akka connection of an Actor
- connection
represents a connection based on a componentId and the type of connection offered by the component
- maybePrefix
an optional prefix of the component. In case of container this option remains none.
- uri
represents the URI of the component. URI is not significant for AkkaLocation as actorRef serves the purpose of exposed remote address of component.
- actorRef
gateway or router for a component that other components will resolve and talk to
- logAdminActorRef
handles dynamic log level changes for that component
- Note
Do not directly access actorRef from constructor, use one of component() or containerRef() method to get the correctly typed actor reference.
-
case class
ComponentId extends TMTSerializable with Product with Serializable
Represents a component based on its name and type.
Represents a component based on its name and type.
- Note
Name should not contain
- leading or trailing spaces
- and hyphen (-)
-
sealed abstract
class
ComponentType extends EnumEntry with Lowercase with TMTSerializable
Represents a type of the Component.
Represents a type of the Component. It should be serializable since it has to be transmittable over the network. The type will always be represented in lower case.
-
sealed abstract
class
Connection extends TMTSerializable
Represents a connection based on a componentId and the type of connection offered by the component
-
case class
ConnectionInfo extends Product with Serializable
ConnectionInfo represents a component name, component type and connection type
-
sealed abstract
class
ConnectionType extends EnumEntry with TMTSerializable
Represents a type of connection offered by the Component
-
final
case class
HttpLocation(connection: HttpConnection, uri: URI, logAdminActorRef: ActorRef[Nothing]) extends Location with Product with Serializable
Represents a live Http connection
Represents a live Http connection
- connection
represents a connection based on a componentId and the type of connection offered by the component
- uri
represents the remote URI of the component that other components will resolve and talk to
- logAdminActorRef
handles dynamic log level changes for that component
-
sealed abstract
class
Location extends TMTSerializable
Location represents a live Connection along with its URI
-
case class
LocationRemoved extends TrackingEvent with Product with Serializable
This event represents unavailability of a location
-
case class
LocationUpdated extends TrackingEvent with Product with Serializable
This event represents modification in location details
-
final
case class
TcpLocation(connection: TcpConnection, uri: URI, logAdminActorRef: ActorRef[Nothing]) extends Location with Product with Serializable
Represents a live Tcp connection
Represents a live Tcp connection
- connection
represents a connection based on a componentId and the type of connection offered by the component
- uri
represents the remote URI of the component that other components will resolve and talk to
- logAdminActorRef
handles dynamic log level changes for that component
-
sealed abstract
class
TrackingEvent extends AnyRef
TrackingEvent is used to represent location events while tracking the connection
-
sealed abstract
class
TypedConnection[T <: Location] extends Connection
TypedConnection captures the type of Location that concrete connection will resolve to
TypedConnection captures the type of Location that concrete connection will resolve to
- T
represents the type of Location
Value Members
- object ComponentId extends Serializable
- object ComponentType extends Enum[ComponentType] with PlayJsonEnum[ComponentType] with Serializable
- object Connection extends Serializable
- object ConnectionType extends Enum[ConnectionType] with PlayJsonEnum[ConnectionType] with Serializable