public interface

BroadcastListener

io.kickflip.sdk.av.BroadcastListener
Known Indirect Subclasses

Class Overview

Provides callbacks for the major lifecycle benchmarks of a Broadcast.

Summary

Public Methods
abstract void onBroadcastError(KickflipException error)
An error occurred.
abstract void onBroadcastLive(Stream stream)
The broadcast is fully buffered and available.
abstract void onBroadcastStart()
The broadcast has started, and is currently buffering.
abstract void onBroadcastStop()
The broadcast has ended.

Public Methods

public abstract void onBroadcastError (KickflipException error)

An error occurred.

public abstract void onBroadcastLive (Stream stream)

The broadcast is fully buffered and available. This is a good time to share the broadcast.

Parameters
stream the Stream representing this broadcast.

public abstract void onBroadcastStart ()

The broadcast has started, and is currently buffering.

public abstract void onBroadcastStop ()

The broadcast has ended.