org.dsa.iot.scala

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
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

    Closes the stream.

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

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

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

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

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

    Returns the children of some node as Observable.

  14. def getNodeValue(path: String)(implicit requester: Requester, ec: ExecutionContext): Future[(String, Date, Any)]

    Returns the node value as a Future.

  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. 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.

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

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

  18. 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.

  19. 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.

  20. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

    Removes attributes/configs of the specified node.

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

    Sets/publishes the value of the specified node.

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

    Sets/publishes the value of the specified node.

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

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. 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.

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

    Updates a node with the supplied value.

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

    Updates a node with the supplied value.

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

    Updates a node with the supplied value.

  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. 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