WOWZStatusCallback

Extends Protocol:
NSObject
Declared In:

Introduction

WOWZStatusCallback defines a protocol for the callback argument to the startStreaming API method used to monitor the status of a broadcast.



Methods

-onWOWZError:
-onWOWZEvent:
-onWOWZStatus:

onWOWZError:


@required

- (void) onWOWZError:(WOWZStatus *) status;
Parameters
status

The WOWZStatus describing the error (the 'error' value of the WOWZStatus).

Discussion

Called when an SDK component or process encounters an error.


onWOWZEvent:


@optional

- (void) onWOWZEvent:(WOWZStatus *) status;
Parameters
status

The WOWZStatus describing the event (the 'event' value of the WOWZStatus).

Discussion

Called when an SDK component or process wants to communicate an event.


onWOWZStatus:


@required

- (void) onWOWZStatus:(WOWZStatus *) status;
Parameters
status

The WOWZStatus describing the success state (the 'state' value of the WZStatus).

Discussion

Called when an SDK component or process completes successfully.