Packages

trait Coordination extends AnyRef

Abstraction for a coordination service. Implementations must provide a constructor with the following signature: (prefix: String, clusterName: String, system: ActorSystem).

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Coordination
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def addSelf(self: Address, ttl: FiniteDuration): Future[Done]

    Add self to the nodes.

    Add self to the nodes.

    self

    self node

    ttl

    TTL for the node entry

    returns

    future signaling done

  2. abstract def getNodes(): Future[Set[Address]]

    Get the nodes.

    Get the nodes.

    returns

    future of nodes

  3. abstract def lock(self: Address, ttl: FiniteDuration): Future[Boolean]

    Akquire a lock for bootstrapping the cluster (first node).

    Akquire a lock for bootstrapping the cluster (first node).

    self

    self node

    ttl

    TTL for the lock

    returns

    true, if lock could be akquired, else false

  4. abstract def refresh(self: Address, ttl: FiniteDuration): Future[Done]

    Refresh entry for self.

    Refresh entry for self.

    self

    self node

    ttl

    TTL for the node entry

    returns

    future signaling done

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped