Package akka.actor.typed
Class ActorTags$
- java.lang.Object
-
- akka.actor.typed.ActorTags$
-
- All Implemented Interfaces:
java.io.Serializable
public class ActorTags$ extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ActorTags$MODULE$Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description ActorTags$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActorTagsapply(java.lang.String tag, scala.collection.immutable.Seq<java.lang.String> additionalTags)Scala API: create a tag props with one or more tagsActorTagsapply(scala.collection.immutable.Set<java.lang.String> tags)Scala API: create a multi-tag props.ActorTagscreate(java.lang.String... tags)Java API: create a tag props with one or more tagsActorTagscreate(java.util.Set<java.lang.String> tags)Java API: create a multi-tag propsActorTagscreate(scala.collection.immutable.Seq<java.lang.String> tags)Java API: create a tag props with one or more tags
-
-
-
Field Detail
-
MODULE$
public static final ActorTags$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
create
public ActorTags create(java.lang.String... tags)
Java API: create a tag props with one or more tags
-
create
public ActorTags create(scala.collection.immutable.Seq<java.lang.String> tags)
Java API: create a tag props with one or more tags
-
create
public ActorTags create(java.util.Set<java.lang.String> tags)
Java API: create a multi-tag propsSet must not be empty.
-
apply
public ActorTags apply(java.lang.String tag, scala.collection.immutable.Seq<java.lang.String> additionalTags)
Scala API: create a tag props with one or more tags
-
apply
public ActorTags apply(scala.collection.immutable.Set<java.lang.String> tags)
Scala API: create a multi-tag props.Set must not be empty.
-
-