Description Usage Arguments Value Warning Author(s) See Also Examples
AddBolt is an auxiliary function for building up a RStorm topology. After initializing a Topology object the AddBolt function can be used to build the topology and specify the order of the Bolts. A Bolt receives as its first argument the Tuple emitted by the previous element in the Stream.
1 |
topology |
a |
bolt |
a |
.verbose |
a logical indicator to state whether or not verbose output should be printed. Default TRUE. |
An object of type Topology which is a list containing the following elements:
spout |
the data.frame passed as a spout |
bolts |
a list of bolts, see |
finailze |
the finalize function to be used for the stream |
The specified Bolt has now been added to the list of bolts. See Topology for more info.
Functions which get added to a Topology using the AddBolt functionality should always use the ... argument. This argument is used to facilitate the processing of the stream. See example below for a minimal functional example of a correctly specified bolt.
Maurits Kaptein
See Also: Topology, Bolt, RStorm
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.