java.lang.Object | |
↳ | com.google.android.gms.common.data.DataBuffer<T> |
![]()
AchievementBuffer,
AppStateBuffer,
DataEventBuffer,
DataItemBuffer,
EventBuffer,
GameBuffer,
GameRequestBuffer,
InvitationBuffer,
LeaderboardBuffer,
LeaderboardScoreBuffer,
MetadataBuffer,
MilestoneBuffer,
MomentBuffer,
ParticipantBuffer,
PersonBuffer,
PlayerBuffer,
QuestBuffer,
SnapshotMetadataBuffer,
TurnBasedMatchBuffer
|
Base class for a buffer of typed data. A DataBuffer
wraps data provided across the binder
from Google Play services.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is deprecated.
use
release() instead
| |||||||||||
Get the item at the specified position.
| |||||||||||
This method is deprecated.
release() is idempotent, and so is safe to call multiple times
| |||||||||||
Releases resources used by the buffer.
| |||||||||||
In order to use this one should correctly override setDataRow(int)
in his DataBufferRef implementation.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||||||
![]() |
Get the item at the specified position. Note that the objects returned from subsequent invocations of this method for the same position may not be identical objects, but will be equal in value. In other words:
buffer.get(i) == buffer.get(i)
may return false.
buffer.get(i).equals(buffer.get(i))
will return true.
position | The position of the item to retrieve. |
---|
position
in this buffer.
Releases resources used by the buffer. This method is idempotent.
In order to use this one should correctly override setDataRow(int) in his DataBufferRef implementation. Be careful: there will be single DataBufferRef while iterating. If you are not sure - DO NOT USE this iterator.