Packages

o

akka

AkkaVersion

object AkkaVersion

Source
AkkaVersion.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AkkaVersion
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def require(libraryName: String, requiredVersion: String): Unit

    Check that the version of Akka is a specific patch version or higher and throw an UnsupportedAkkaVersion exception if the version requirement is not fulfilled.

    Check that the version of Akka is a specific patch version or higher and throw an UnsupportedAkkaVersion exception if the version requirement is not fulfilled.

    For example: require("my-library", "2.5.4") would fail if used with Akka 2.4.19 and 2.5.3, but succeed with 2.5.4 and 2.6.1

    libraryName

    The name of the library or component requiring the Akka version, used in the error message.

    requiredVersion

    Minimal version that this library works with