StreamState

Description

Defines the enumeration type of the stream lifetime statuses. It is for internal use only.

Structure Definition

1
2
3
4
5
6
7
enum StreamState {
    STREAM_STATE_NORMAL = 0,
    STREAM_STATE_NEW,
    STREAM_STATE_BUILD_INPROGRESS,
    STREAM_STATE_BUILD_FAILED,
    STREAM_STATE_DESTROY,
};

Parameters

Parameter

Description

STREAM_STATE_NORMAL

A stream is running properly.

STREAM_STATE_NEW

A stream is being initialized.

STREAM_STATE_BUILD_INPROGRESS

A stream is being constructed.

STREAM_STATE_BUILD_FAILED

A stream fails to be constructed.

STREAM_STATE_DESTROY

A stream is being destroyed.