Class ChatActionResultCallback
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamfriends.callback.ChatActionResultCallback
-
- All Implemented Interfaces:
ICallbackMsg
public class ChatActionResultCallback extends CallbackMsg
This callback is fired when a chat action has completed.
-
-
Constructor Summary
Constructors Constructor Description ChatActionResultCallback(MsgClientChatActionResult result)ChatActionResultCallback(SteamID chatRoomID, SteamID chatterID, EChatAction action, EChatActionResult result)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EChatActiongetAction()SteamIDgetChatRoomID()SteamIDgetChatterID()EChatActionResultgetResult()-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Constructor Detail
-
ChatActionResultCallback
public ChatActionResultCallback(MsgClientChatActionResult result)
-
ChatActionResultCallback
public ChatActionResultCallback(SteamID chatRoomID, SteamID chatterID, EChatAction action, EChatActionResult result)
-
-
Method Detail
-
getChatRoomID
public SteamID getChatRoomID()
- Returns:
- the SteamID of the chat room the action was performed in.
-
getChatterID
public SteamID getChatterID()
- Returns:
- the SteamID of the chat member the action was performed on.
-
getAction
public EChatAction getAction()
- Returns:
- the chat action that was performed.
-
getResult
public EChatActionResult getResult()
- Returns:
- the result of the chat action.
-
-