WOWZData.h

Includes:
<Foundation/Foundation.h>

Introduction

Use the links in the table of contents to the left to access the documentation.



Classes

WOWZDataItem
WOWZDataList
WOWZDataMap


Typedefs

NS_ENUM
WOWZDataCallback
WOWZDataType

NS_ENUM


Constants
WOWZDataTypeNull

A null value (NSNull).

WOWZDataTypeString

A string (NSString).

WOWZDataTypeBoolean

A Boolean (BOOL).

WOWZDataTypeDate

A date (NSDate).

WOWZDataTypeInteger

An integer (NSInteger).

WOWZDataTypeFloat

A float (Float).

WOWZDataTypeDouble

A double (Double).

WOWZDataTypeMap

A WOWZDataMap.

WOWZDataTypeList

A WOWZDataList.

Discussion

A collection of constants that represent the supported types of a WOWZDataItem.

See Also


WOWZDataCallback


typedef void (^WOWZDataCallback)(
    WOWZDataMap *_Nullable result,
    BOOL isError);  
Parameters
result

The data returned from a Wowza Streaming Engine server module function.

isError

Indicates whether the server module function returned an error.

Discussion

The callback that a client provides when calling a Wowza Streaming Engine server module function.


WOWZDataType


Constants
WOWZDataTypeNull

A null value (NSNull).

WOWZDataTypeString

A string (NSString).

WOWZDataTypeBoolean

A Boolean (BOOL).

WOWZDataTypeDate

A date (NSDate).

WOWZDataTypeInteger

An integer (NSInteger).

WOWZDataTypeFloat

A float (Float).

WOWZDataTypeDouble

A double (Double).

WOWZDataTypeMap

A WOWZDataMap.

WOWZDataTypeList

A WOWZDataList.

Discussion

A collection of constants that represent the supported types of a WOWZDataItem.

See Also