com.websudos.util.zookeeper

DefaultClientStore

Related Doc: package zookeeper

object DefaultClientStore extends ZkStore

Linear Supertypes
ZkStore, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DefaultClientStore
  2. ZkStore
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. val address: InetSocketAddress

    Definition Classes
    DefaultClientStoreZkStore
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def client: ZkClient

    Simple accessor that will guarantee a client is initialised before it is used.

    Simple accessor that will guarantee a client is initialised before it is used. It's not the cheapest to maintain due to the inherent synchronisation required by maintaining global state.

    However, for its purpose, a reference to this client is required only in the initialisation of clients and its generally to cheap to matter.

    returns

    A reference to the global ZooKeeper client guaranteed by this store.

    Definition Classes
    ZkStore
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def serialize(address: Set[InetSocketAddress]): String

    Definition Classes
    ZkStore
  18. def serialize(address: InetSocketAddress): String

    The default way to serialise an InetSocketAddress to a string.

    The default way to serialise an InetSocketAddress to a string. This method will be used by all other primitive definitions inside this project meaning users can easily override this to enforce their own conventions.

    JSON serialisation or any other form of serialization could easily be used to store and retrieve data from a ZooKeeper path. The data in question is only intended for sequences of host:port pairs.

    address

    The InetSocketAddress to serialise to a string.

    returns

    The string representation of the InetSocketAddress that will be stored as bytes in ZooKeeper.

    Definition Classes
    ZkStore
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  20. implicit val timeout: Duration

    The connection timeout used to enforce a timeout when connection to the ZooKeeper host.

    The connection timeout used to enforce a timeout when connection to the ZooKeeper host.

    Definition Classes
    ZkStore
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ZkStore

Inherited from AnyRef

Inherited from Any

Ungrouped