Package akka.cluster.typed
Class SetAppVersionLater$
- java.lang.Object
-
- akka.cluster.typed.SetAppVersionLater$
-
- All Implemented Interfaces:
java.io.Serializable
public class SetAppVersionLater$ extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static SetAppVersionLater$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description SetAppVersionLater$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SetAppVersionLater
apply(scala.concurrent.Future<Version> appVersion)
SetAppVersionLater
create(java.util.concurrent.CompletionStage<Version> appVersion)
Java API: If theappVersion
is read from an external system (e.g.scala.Option<scala.concurrent.Future<Version>>
unapply(SetAppVersionLater x$0)
-
-
-
Field Detail
-
MODULE$
public static final SetAppVersionLater$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
create
public SetAppVersionLater create(java.util.concurrent.CompletionStage<Version> appVersion)
Java API: If theappVersion
is read from an external system (e.g. Kubernetes) it can be defined after system startup but before joining by completing theappVersion
CompletionStage
. In that case,SetAppVersionLater
should be sent beforeJoin
orJoinSeedNodes
It's fine to sendJoin
orJoinSeedNodes
immediately afterwards (before theCompletionStage
is completed. The join will then wait for theappVersion
to be completed.
-
apply
public SetAppVersionLater apply(scala.concurrent.Future<Version> appVersion)
-
unapply
public scala.Option<scala.concurrent.Future<Version>> unapply(SetAppVersionLater x$0)
-
-