Packages

p

csw.messages

location

package location

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. 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.

  2. 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 (-)
  3. 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.

  4. sealed abstract class Connection extends TMTSerializable

    Represents a connection based on a componentId and the type of connection offered by the component

  5. case class ConnectionInfo extends Product with Serializable

    ConnectionInfo represents a component name, component type and connection type

  6. sealed abstract class ConnectionType extends EnumEntry with TMTSerializable

    Represents a type of connection offered by the Component

  7. 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

  8. sealed abstract class Location extends TMTSerializable

    Location represents a live Connection along with its URI

  9. case class LocationRemoved extends TrackingEvent with Product with Serializable

    This event represents unavailability of a location

  10. case class LocationUpdated extends TrackingEvent with Product with Serializable

    This event represents modification in location details

  11. 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

  12. sealed abstract class TrackingEvent extends AnyRef

    TrackingEvent is used to represent location events while tracking the connection

  13. 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

Ungrouped