Object

org.dsa.iot.scala

DSAHelper

Related Doc: package scala

Permalink

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(rid: Int)(implicit requester: Requester): Future[CloseResponse]

    Permalink

    Closes the stream.

  7. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def getNodeChildren(path: String)(implicit requester: Requester): Observable[Node]

    Permalink

    Returns the children of some node as Observable.

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

    Permalink

    Returns the node value as a Future.

  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def invoke(path: String, params: Map[String, Any] = Map.empty)(implicit requester: Requester): Observable[InvokeResponse]

    Permalink

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

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

    Permalink

    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]

    Permalink

    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]

    Permalink

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

  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def list(path: String)(implicit requester: Requester): Observable[ListResponse]

    Permalink

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

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def remove(path: String)(implicit requester: Requester): Future[RemoveResponse]

    Permalink

    Removes attributes/configs of the specified node.

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

    Permalink

    Sets/publishes the value of the specified node.

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

    Permalink

    Sets/publishes the value of the specified node.

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. def unwatch(path: String)(implicit requester: Requester): Unit

    Permalink

    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

    Permalink

    Updates a node with the supplied value.

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

    Permalink

    Updates a node with the supplied value.

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

    Permalink

    Updates a node with the supplied value.

  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def watch(path: String)(implicit requester: Requester): Observable[SubscriptionValue]

    Permalink

    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