Interface LeaderboardDetailsView
-
- All Superinterfaces:
LceView
,MvpLceView
,MvpView
- All Known Implementing Classes:
LeaderboardDetailsActivity
public interface LeaderboardDetailsView extends LceView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showBoard(Board boards, int totalEntries)
The View is notified in this method when the list of leaderboard was received successfully from the API callvoid
showMemberRank(MemberRank member)
The View is notified in this method when the list of member rank data was received successfully from the API call-
Methods inherited from interface com.cheetahdigital.uikit.architecture.lce.LceView
onLoadFailed, onLoadSuccess, setErrorViewClickListener
-
Methods inherited from interface com.cheetahdigital.uikit.architecture.lce.MvpLceView
showContent, showError, showLoading
-
-
-
-
Method Detail
-
showBoard
void showBoard(Board boards, int totalEntries)
The View is notified in this method when the list of leaderboard was received successfully from the API call- Parameters:
boards
- instance ofBoard
used to populate the viewtotalEntries
- number of total entries
-
showMemberRank
void showMemberRank(MemberRank member)
The View is notified in this method when the list of member rank data was received successfully from the API call- Parameters:
member
- member rank data
-
-