Class FriendsListCallback
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamfriends.callback.FriendsListCallback
-
- All Implemented Interfaces:
ICallbackMsg
public class FriendsListCallback extends CallbackMsg
This callback is fired when the client receives a list of friends.
-
-
Constructor Summary
Constructors Constructor Description FriendsListCallback(in.dragonbra.javasteam.protobufs.steamclient.SteammessagesClientserverFriends.CMsgClientFriendsList.Builder msg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Friend>getFriendList()booleanisIncremental()Gets a value indicating whether thisFriendsListCallbackis an incremental update.-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Method Detail
-
isIncremental
public boolean isIncremental()
Gets a value indicating whether thisFriendsListCallbackis an incremental update.- Returns:
- true if incremental; otherwise, false.
-
getFriendList
public java.util.List<Friend> getFriendList()
- Returns:
- the friend list.
-
-