Quickstart
Last updated
Last updated
rtd.pub consists of
An Excel add-in that provides the basis of the Excel integration. Only recent versions of Microsoft Excel running on Windows will be supported in the initial release.
Data plugins that act as a bridge from any streaming data source to the add-in
A process that hosts data plugins and interacts with the Excel add-in
In reality, all an end user sees is a new function called rtdpub.Sub
that they can use to include streaming values in their workbooks.
Simple data plugins supporting NATS and Kafka are included.
You can bring your own plugins, which are . We provide SDKs for go, with Python coming shortly.
Install the add-in and built-in plugins by downloading and running the installer (GA download coming soon, )
Restart Excel and create a new workbook
Add a formula to a cell: =rtdpub.Sub("counter", "test")
This means:
use the counter
connector and pass it the parameter test
Observe the magic of the cell saying "1", then a second later, "2" ... and so on.
In another cell, add: =rtdpub.Sub("counter", "test2")
. You now have two independent counters.
A counter (or two) is not that compelling but it does show the machinery working end to end. Follow on for more details, including