LeaderboardScoreBuffer
Stay organized with collections
Save and categorize content based on your preferences.
Page Summary
LeaderboardScoreBuffer is an AbstractDataBuffer containing LeaderboardScore data.
The get(int position) method is the only public method available for accessing LeaderboardScore objects from the buffer.
LeaderboardScoreBuffer inherits methods like close(), getCount(), and iterator() from AbstractDataBuffer and other interfaces, allowing for standard data buffer operations.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`LeaderboardScoreBuffer` stores `LeaderboardScore` data. Key actions include retrieving `LeaderboardScore` data at a specific position using the `get(int position)` method. The class also supports closing the buffer with `close()`, determining the number of scores with `getCount()`, checking if it's closed via `isClosed()`, and iterating through scores using `iterator()` or `singleRefIterator()`. Lastly, It can also `release()` resources and use the `forEach` and `spliterator` methods.\n"]]