Visor 'ack' command implementation.
Visor 'ack' command implementation.
+-------------------------------------------+ | ack | Acks arguments on all remote nodes. | +-------------------------------------------+
ack {"s"}
ack ("s", f)s
Optional string to print on each remote node.
f
Optional Scala predicate on 'ScalarRichNodePimp' filtering nodes in the topology.ack "Howdy!" Prints 'Howdy!' on all nodes in the topology. ack("Howdy!", _.id8.startsWith("123")) Prints 'Howdy!' on all nodes satisfying this predicate. ack Prints local node ID on all nodes in the topology.
Companion object that does initialization of the command.
Overview
Visor 'ack' command implementation.
Help
Specification
ack {"s"} ack ("s", f)Arguments
s Optional string to print on each remote node. f Optional Scala predicate on 'ScalarRichNodePimp' filtering nodes in the topology.Examples