Executes a synchronous get call on the device/property specified by the command line arguments, prints out the value returned, then executes the call 10 times in a loop, each time printing the execution time. Finally, it executes the call 1000 times and prints out the average execution time per call.
Executes a synchronous set call with the device/property/value specified by the command line arguments, then reads back and prints out the actual property value.
Executes an asynchronous get call on device/property specified by the command line arguments, prints out the value returned, then executes the call 1000 times, waits for all replies, and prints out:
See also: simple implementation of the ReplyHandler interface used in this test.
Executes an asynchronous set call with the device/property/value specified by the command line arguments.
See also: simple implementation of the ReplyHandler interface used in this test.
Executes a monitorOn call with the device/property/onChange specified by the command line arguments, waits for 10 replies, and cancels the subscription.
See also: simple implementation of the ReplyHandler interface used in this test.