Packages

o

com.uralian.dsa

DSAHelper

object DSAHelper

Provides methods for executing DSA commands.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DSAHelper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. def close(rid: Int)(implicit requester: Requester): Future[CloseResponse]

    Closes the stream.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def getNodeChildren(path: String)(implicit requester: Requester): Observable[Node]

    Returns the children of some node as Observable.

  12. def getNodeValue(path: String)(implicit requester: Requester, ec: ExecutionContext): Future[TimedValue]

    Returns the node value as a Future.

  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def invoke(path: String, params: Map[String, Any] = Map.empty)(implicit requester: Requester): Observable[InvokeResponse]

    Executes Invoke command and returns an Observable that emits InvokeResponse events.

  15. def invoke(path: String, params: (String, Any)*)(implicit requester: Requester): Observable[InvokeResponse]

    Executes Invoke command and returns an Observable that emits InvokeResponse events.

  16. def invokeAndWait(path: String, params: Map[String, Any] = Map.empty)(implicit requester: Requester): Future[InvokeResponse]

    Executes Invoke command and waits until the stream is closed before returning the response.

  17. def invokeAndWait(path: String, params: (String, Any)*)(implicit requester: Requester): Future[InvokeResponse]

    Executes Invoke command and waits until the stream is closed before returning the response.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def list(path: String)(implicit requester: Requester): Observable[ListResponse]

    Executes List command and returns an Observable that emits ListResponse events.

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def remove(path: String)(implicit requester: Requester): Future[RemoveResponse]

    Removes attributes/configs of the specified node.

  24. def set(path: String, value: Value)(implicit requester: Requester): Future[SetResponse]

    Sets/publishes the value of the specified node.

  25. def set(path: String, value: Any)(implicit requester: Requester): Future[SetResponse]

    Sets/publishes the value of the specified node.

  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. def unwatch(path: String)(implicit requester: Requester): Unit

    Stops watching the specified path.

    Stops watching the specified path. This will not unsubscribe the existing observers, so it safer to stop watching the path by unsubscribing the observers.

  29. def updateNode(path: String, value: Value)(implicit responder: Responder): Unit

    Updates a node with the supplied value.

  30. def updateNode(path: String, value: Any)(implicit responder: Responder): Unit

    Updates a node with the supplied value.

  31. def updateNode(pair: (String, Any))(implicit responder: Responder): Unit

    Updates a node with the supplied value.

  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. def watch(path: String)(implicit requester: Requester): Observable[SubscriptionValue]

    Executes Subscribe command and returns an Observable that emits SubscriptionValue events.

    Executes Subscribe command and returns an Observable that emits SubscriptionValue events. The system will remove the watch from a path as soon as the last observer to that path ubsubscribes.

Inherited from AnyRef

Inherited from Any

Ungrouped