Class ReplicaId

  • All Implemented Interfaces:
    java.io.Serializable, scala.Equals, scala.Product

    public final class ReplicaId
    extends java.lang.Object
    implements scala.Product, java.io.Serializable
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ReplicaId​(java.lang.String id)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static ReplicaId apply​(java.lang.String id)  
      boolean canEqual​(java.lang.Object x$1)  
      ReplicaId copy​(java.lang.String id)  
      java.lang.String copy$default$1()  
      static ReplicaId empty()
      When migrating from non-replicated to replicated the ReplicaId of where the original entity was located should be empty.
      boolean equals​(java.lang.Object x$1)  
      int hashCode()  
      java.lang.String id()  
      int productArity()  
      java.lang.Object productElement​(int x$1)  
      java.lang.String productElementName​(int x$1)  
      scala.collection.Iterator<java.lang.Object> productIterator()  
      java.lang.String productPrefix()  
      java.lang.String toString()  
      static scala.Option<java.lang.String> unapply​(ReplicaId x$0)
      Identifies a replica in Replicated Event Sourcing, could be a datacenter name or a logical identifier.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface scala.Product

        productElementNames
    • Constructor Detail

      • ReplicaId

        public ReplicaId​(java.lang.String id)
    • Method Detail

      • empty

        public static ReplicaId empty()
        When migrating from non-replicated to replicated the ReplicaId of where the original entity was located should be empty.
      • apply

        public static ReplicaId apply​(java.lang.String id)
      • unapply

        public static scala.Option<java.lang.String> unapply​(ReplicaId x$0)
        Identifies a replica in Replicated Event Sourcing, could be a datacenter name or a logical identifier.
      • id

        public java.lang.String id()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • copy

        public ReplicaId copy​(java.lang.String id)
      • copy$default$1

        public java.lang.String copy$default$1()
      • productPrefix

        public java.lang.String productPrefix()
        Specified by:
        productPrefix in interface scala.Product
      • productArity

        public int productArity()
        Specified by:
        productArity in interface scala.Product
      • productElement

        public java.lang.Object productElement​(int x$1)
        Specified by:
        productElement in interface scala.Product
      • productIterator

        public scala.collection.Iterator<java.lang.Object> productIterator()
        Specified by:
        productIterator in interface scala.Product
      • canEqual

        public boolean canEqual​(java.lang.Object x$1)
        Specified by:
        canEqual in interface scala.Equals
      • productElementName

        public java.lang.String productElementName​(int x$1)
        Specified by:
        productElementName in interface scala.Product
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object x$1)
        Specified by:
        equals in interface scala.Equals
        Overrides:
        equals in class java.lang.Object