Class ChatEnterCallback
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamfriends.callback.ChatEnterCallback
-
- All Implemented Interfaces:
ICallbackMsg
public class ChatEnterCallback extends CallbackMsg
This callback is fired in response to attempting to join a chat.
-
-
Constructor Summary
Constructors Constructor Description ChatEnterCallback(MsgClientChatEnter msg, byte[] payload)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description bytegetChatFlags()SteamIDgetChatID()java.util.List<ChatMemberInfo>getChatMembers()java.lang.StringgetChatRoomName()EChatRoomTypegetChatRoomType()SteamIDgetClanID()EChatRoomEnterResponsegetEnterResponse()SteamIDgetFriendID()intgetNumChatMembers()SteamIDgetOwnerID()-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Constructor Detail
-
ChatEnterCallback
public ChatEnterCallback(MsgClientChatEnter msg, byte[] payload)
-
-
Method Detail
-
getFriendID
public SteamID getFriendID()
- Returns:
- the friend ID.
-
getChatRoomType
public EChatRoomType getChatRoomType()
- Returns:
- the type of the chat room.
-
getChatFlags
public byte getChatFlags()
- Returns:
- the chat flags.
-
getEnterResponse
public EChatRoomEnterResponse getEnterResponse()
- Returns:
- the chat enter response.
-
getNumChatMembers
public int getNumChatMembers()
- Returns:
- the number of users currently in this chat room.
-
getChatRoomName
public java.lang.String getChatRoomName()
- Returns:
- the name of the chat room.
-
getChatMembers
public java.util.List<ChatMemberInfo> getChatMembers()
- Returns:
- a list of
ChatMemberInfoinstances for each of the members of this chat room.
-
-