WZData.h

Includes:
<Foundation/Foundation.h>

Introduction

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



Classes

WZDataItem
WZDataList
WZDataMap


Typedefs

NS_ENUM
WZDataCallback
WZDataType

NS_ENUM


Constants
WZDataTypeNull

A Null value (NSNull)

WZDataTypeString

A string (NSString).

WZDataTypeBoolean

A boolean (BOOL).

WZDataTypeDate

A date (NSDate).

WZDataTypeInteger

An integer (NSInteger).

WZDataTypeFloat

A float (Float).

WZDataTypeDouble

A double (Double).

WZDataTypeMap

A WZDataMap.

WZDataTypeList

A WZDataList.

Discussion

The allowed types of a WZDataItem.

See Also


WZDataCallback


typedef void (^WZDataCallback)(
    WZDataMap *_Nullable result,
    BOOL isError);  
Parameters
result

The result data returned from a server module function.

isError

whether the server module function returned an error.

Discussion

This is the callback that a client would provide when calling a Wowza server module function.


WZDataType


Constants
WZDataTypeNull

A Null value (NSNull)

WZDataTypeString

A string (NSString).

WZDataTypeBoolean

A boolean (BOOL).

WZDataTypeDate

A date (NSDate).

WZDataTypeInteger

An integer (NSInteger).

WZDataTypeFloat

A float (Float).

WZDataTypeDouble

A double (Double).

WZDataTypeMap

A WZDataMap.

WZDataTypeList

A WZDataList.

Discussion

The allowed types of a WZDataItem.

See Also