execute
Execute event stream processing function on specific number of event windows
Since R2022b
This function requires Streaming Data Framework for MATLAB® Production Server™.
Syntax
Description
execute(
runs the
streaming processing function specified in the esp
,n
)Name
property of
processing object esp
synchronously on n
event
windows.
The execute
function starts processing event windows at the current
read position of the stream. Each event window is adjacent to the previous window, with no
gaps between windows. To change the starting position of the entire sequence, call seek
before
calling execute
.
The first call to execute
reads events from the position in the
data stream where the read position was when esp
was constructed. On
subsequent calls to execute
, the read position is set to
Current
. To change this behavior, call seek
before
execute
.
Examples
Input Arguments
Version History
Introduced in R2022b
See Also
eventStreamProcessor
| package
| seek
| start
| startServer
| stop
| stopServer