object DSAHelper
Provides methods for executing DSA commands.
- Alphabetic
- By Inheritance
- DSAHelper
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
close(rid: Int)(implicit requester: Requester): Future[CloseResponse]
Closes the stream.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getNodeChildren(path: String)(implicit requester: Requester): Observable[Node]
Returns the children of some node as Observable.
-
def
getNodeValue(path: String)(implicit requester: Requester, ec: ExecutionContext): Future[TimedValue]
Returns the node value as a Future.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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.
-
def
invoke(path: String, params: (String, Any)*)(implicit requester: Requester): Observable[InvokeResponse]
Executes Invoke command and returns an Observable that emits InvokeResponse events.
-
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.
-
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.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
list(path: String)(implicit requester: Requester): Observable[ListResponse]
Executes List command and returns an Observable that emits ListResponse events.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
remove(path: String)(implicit requester: Requester): Future[RemoveResponse]
Removes attributes/configs of the specified node.
-
def
set(path: String, value: Value)(implicit requester: Requester): Future[SetResponse]
Sets/publishes the value of the specified node.
-
def
set(path: String, value: Any)(implicit requester: Requester): Future[SetResponse]
Sets/publishes the value of the specified node.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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.
-
def
updateNode(path: String, value: Value)(implicit responder: Responder): Unit
Updates a node with the supplied value.
-
def
updateNode(path: String, value: Any)(implicit responder: Responder): Unit
Updates a node with the supplied value.
-
def
updateNode(pair: (String, Any))(implicit responder: Responder): Unit
Updates a node with the supplied value.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
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.