Main Content

stopStreaming

Stop streaming signal data

Since R2022b

    Description

    status = stopStreaming(tg, appName) stops streaming of signals of the specified application on the target.

    example

    Examples

    collapse all

    Stop measurement of application myApplication.

    tg.stopStreaming('myApplication');

    Input Arguments

    collapse all

    Object represents a target computer. Use the object to establish the connection with Linux target, to deploy the applications on Linux target, and perform several other actions.

    Example: myTargetHandle

    Specify the application name to stop the measurement.

    Example: myApplication

    Output Arguments

    collapse all

    Returns true if the measurement of signals of the application has stopped. false if measurement does not stop.

    Version History

    Introduced in R2022b

    Go to top of page