Class ActorTags$

java.lang.Object
org.apache.pekko.actor.typed.ActorTags$
All Implemented Interfaces:
Serializable

public class ActorTags$ extends Object implements Serializable
See Also:
  • Field Details

    • MODULE$

      public static final ActorTags$ MODULE$
      Static reference to the singleton instance of this Scala object.
  • Constructor Details

    • ActorTags$

      public ActorTags$()
  • Method Details

    • create

      public ActorTags create(String... tags)
      Java API: create a tag props with one or more tags
    • create

      public ActorTags create(scala.collection.immutable.Seq<String> tags)
      Java API: create a tag props with one or more tags
    • create

      public ActorTags create(Set<String> tags)
      Java API: create a multi-tag props

      Set must not be empty.

    • apply

      public ActorTags apply(String tag, scala.collection.immutable.Seq<String> additionalTags)
      Scala API: create a tag props with one or more tags
    • apply

      public ActorTags apply(scala.collection.immutable.Set<String> tags)
      Scala API: create a multi-tag props.

      Set must not be empty.