com.twitter.finagle.serverset2.client

NullZooKeeperWriter

Related Docs: object NullZooKeeperWriter | package client

trait NullZooKeeperWriter extends ZooKeeperWriter with NullZooKeeperClient

Linear Supertypes
NullZooKeeperClient, ZooKeeperWriter, ZooKeeperClient, Closable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NullZooKeeperWriter
  2. NullZooKeeperClient
  3. ZooKeeperWriter
  4. ZooKeeperClient
  5. Closable
  6. AnyRef
  7. 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. def addAuthInfo(scheme: String, auth: Buf): Future[Unit]

    Add the specified scheme: auth information to this connection.

    Add the specified scheme: auth information to this connection.

    scheme

    the authentication scheme to use.

    auth

    the authentication credentials.

    returns

    a Future[Unit]

    Definition Classes
    NullZooKeeperClient → ZooKeeperClient
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def close(deadline: Time): Future[Unit]

    Definition Classes
    NullZooKeeperClient → Closable
  8. def close(after: Duration): Future[Unit]

    Definition Classes
    Closable
  9. final def close(): Future[Unit]

    Definition Classes
    Closable
  10. def create(path: String, data: Option[Buf], acl: Seq[ACL], createMode: CreateMode): Future[String]

    Create a node of a given type with the given path.

    Create a node of a given type with the given path. The node data will be the given data, and node acl will be the given acl.

    path

    the path for the node.

    data

    the initial data for the node.

    acl

    a sequence of ACLs for the node.

    createMode

    specifies what type of node to create.

    returns

    a Future[String] containing the actual path of the created node.

    Definition Classes
    NullZooKeeperWriter → ZooKeeperWriter
  11. def delete(path: String, version: Option[Int]): Future[Unit]

    Delete the node with the given path.

    Delete the node with the given path. The call will succeed if such a node exists, and the given version matches the node's version (if the given version is None, it matches any node's versions).

    This operation, if successful, will trigger all the watches on the node of the given path left by existsWatch API calls, and the watches on the parent node left by getChildrenWatch API calls.

    path

    the path of the node to be deleted.

    version

    the expected node version.

    returns

    a Future[Unit]

    Definition Classes
    NullZooKeeperWriter → ZooKeeperWriter
  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  16. def getEphemerals(): Future[Seq[String]]

    Get the existing ephemeral nodes created with the current session ID.

    Get the existing ephemeral nodes created with the current session ID.

    NOTE: This method is not universally implemented. The Future will fail with KeeperException.Unimplemented if this is the case.

    returns

    a Future[Seq[String]] of ephemeral node paths.

    Definition Classes
    NullZooKeeperClient → ZooKeeperClient
  17. def hashCode(): Int

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

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

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

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

    Definition Classes
    AnyRef
  22. def sessionId: Long

    The session id for this ZooKeeper client instance.

    The session id for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect.

    returns

    current session id

    Definition Classes
    NullZooKeeperClient → ZooKeeperClient
  23. def sessionPasswd: Buf

    The session password for this ZooKeeper client instance.

    The session password for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect.

    returns

    current session password

    Definition Classes
    NullZooKeeperClient → ZooKeeperClient
  24. def sessionTimeout: Duration

    The negotiated session timeout for this ZooKeeper client instance.

    The negotiated session timeout for this ZooKeeper client instance. The value returned is not valid until the client connects to a server and may change after a re-connect.

    returns

    current session timeout

    Definition Classes
    NullZooKeeperClient → ZooKeeperClient
  25. def setACL(path: String, acl: Seq[ACL], version: Option[Int]): Future[Stat]

    Set the ACL for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is None, it matches any node's versions)

    Set the ACL for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is None, it matches any node's versions)

    path

    the path of the node to write.

    acl

    a list of Data.ACL to apply to the node.

    version

    the expected matching version.

    returns

    a Future[Data.Stat]

    Definition Classes
    NullZooKeeperWriter → ZooKeeperWriter
  26. def setData(path: String, data: Option[Buf], version: Option[Int]): Future[Stat]

    Set the data for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is None, it matches any node's versions).

    Set the data for the node of the given path if such a node exists and the given version matches the version of the node (if the given version is None, it matches any node's versions).

    This operation, if successful, will trigger all the watches on the node of the given path left by getDataWatch calls.

    path

    the path of the node to write.

    data

    the data to set.

    version

    the expected matching version.

    returns

    a Future[Data.Stat]

    Definition Classes
    NullZooKeeperWriter → ZooKeeperWriter
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NullZooKeeperClient

Inherited from ZooKeeperWriter

Inherited from ZooKeeperClient

Inherited from Closable

Inherited from AnyRef

Inherited from Any

Ungrouped