Packages

final case class RoutePath(stack: Deployment, portName: String, protocol: String, port: Int, weight: Int) extends Product with Serializable

A path to a particular port on a particular deployment, which is weighted, so that we split traffic between two deployments both offering the same named port on a named service.

Weights are stored as a percentage of traffic, so 100 means all traffic, 50 means half of the traffic.

Source
RoutePath.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RoutePath
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RoutePath(stack: Deployment, portName: String, protocol: String, port: Int, weight: Int)

Value Members

  1. val port: Int
  2. val portName: String
  3. val protocol: String
  4. val stack: Deployment
  5. val weight: Int