Class PekkoVersion


  • public class PekkoVersion
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      PekkoVersion()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void require​(java.lang.String libraryName, java.lang.String requiredVersion)
      Check that the version of Pekko is a specific patch version or higher and throw an UnsupportedPekkoVersion exception if the version requirement is not fulfilled.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PekkoVersion

        public PekkoVersion()
    • Method Detail

      • require

        public static void require​(java.lang.String libraryName,
                                   java.lang.String requiredVersion)
        Check that the version of Pekko is a specific patch version or higher and throw an UnsupportedPekkoVersion exception if the version requirement is not fulfilled.

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

        Parameters:
        libraryName - The name of the library or component requiring the Pekko version, used in the error message.
        requiredVersion - Minimal version that this library works with