Function Data Type Sample

About This Sample

In the StreamBase expression language, function is a data type. This sample EventFlow module demonstrates three ways to apply an algorithm to data on a stream.

StreamBase expression language functions can be defined as constant expressions or passed on a stream. As a StreamBase data type, functions return a declared data type, and can accept any other data type as arguments. In this sample, there is one double argument and a double result.

This sample uses Map operators, in which the same degrees Celsius to degrees Fahrenheit conversion expression is applied in three ways:

  1. For comparison, as an expression defined without a function, in the UseLocalFn Map operator.

  2. The same expression is defined as a module function in the Definitions tab, and called in the UseModuleFn Map operator.

  3. The same expression is defined as a function field in the DefineFn operator, then called by its field name in the UsePassedFn operator.

Importing This Sample into StreamBase Studio

In StreamBase Studio, import this sample with the following steps:

  • From the top-level menu, select File>Import Samples and Community Content.

  • Enter function data to narrow the list of options.

  • Select Using the function data type sample from the Data Constructs category.

  • Click Import Now.

StreamBase Studio creates a project for the sample.

Running This Sample in StreamBase Studio

  1. In the Project Explorer view, open this sample's folder.

    Keep an eye on the bottom right status bar of the Studio window. Make sure any Updating, Downloading, Building, or Rebuild project messages finish before you proceed.

  2. Open the src/main/eventflow/packageName folder.

  3. Double-click to open the function.sbapp module. Make sure the module is the currently active tab in the EventFlow Editor.

  4. Click the Run button. This opens the SB Test/Debug perspective and starts the module.

  5. As the server starts, StreamBase Studio switches to the SB Test/Debug perspective.

  6. Wait for the Waiting for fragment to initialize message to clear.

  7. Select the Manual Input tab.

  8. Enter a value for a temperature in temp_cel in the celsius input stream and click Send Data.

  9. Observe that the temp_f_expr, temp_f_fcn, and temp_f_stream output values are identical.

  10. When done, press F9 or click the Terminate EventFlow Fragment button.

Sample Location

When you load the sample into StreamBase® Studio, Studio copies the sample project's files to your Studio workspace, which is normally part of your home directory, with full access rights.

Important

Load this sample in StreamBase® Studio, and thereafter use the Studio workspace copy of the sample to run and test it, even when running from the command prompt.

Using the workspace copy of the sample avoids permission problems. The default workspace location for this sample is:

studio-workspace/sample_function

See Default Installation Directories for the default location of studio-workspace on your system.