Interface StreamActivityUiDelegate
-
- All Implemented Interfaces:
public interface StreamActivityUiDelegate<T extends StreamCallActivity>
-
-
Method Summary
Modifier and Type Method Description abstract UnitloadingContent(T activity)Called when the setContent cannot yet be invoked (missing Call for e.g.). abstract UnitsetContent(T activity, Call call)Set the content for the activity, -
-
Method Detail
-
loadingContent
abstract Unit loadingContent(T activity)
Called when the setContent cannot yet be invoked (missing Call for e.g.). Used to show some UI in the activity if the call is not yet loaded.
-
setContent
abstract Unit setContent(T activity, Call call)
Set the content for the activity,
- Parameters:
activity- the activitycall- the call
-
-
-
-