public class SteamCloud extends ClientMsgHandler
client| Constructor and Description |
|---|
SteamCloud() |
| Modifier and Type | Method and Description |
|---|---|
in.dragonbra.javasteam.types.AsyncJobSingle<SingleFileInfoCallback> |
getSingleFileInfo(int appId,
java.lang.String filename)
Requests details for a specific file in the user's Cloud storage.
|
void |
handleMsg(IPacketMsg packetMsg)
Handles a client message.
|
in.dragonbra.javasteam.types.AsyncJobSingle<UGCDetailsCallback> |
requestUGCDetails(UGCHandle ugcId)
Requests details for a specific item of user generated content from the Steam servers.
|
in.dragonbra.javasteam.types.AsyncJobSingle<ShareFileCallback> |
shareFile(int appId,
java.lang.String filename)
Commit a Cloud file at the given path to make its UGC handle publicly visible.
|
getClient, isExpectDisconnection, setExpectDisconnection, setuppublic in.dragonbra.javasteam.types.AsyncJobSingle<UGCDetailsCallback> requestUGCDetails(UGCHandle ugcId)
UGCDetailsCallback.ugcId - The unique user generated content id.UGCDetailsCallback.public in.dragonbra.javasteam.types.AsyncJobSingle<SingleFileInfoCallback> getSingleFileInfo(int appId, java.lang.String filename)
SingleFileInfoCallback.appId - The app id of the game.filename - The path to the file being requested.SingleFileInfoCallback.public in.dragonbra.javasteam.types.AsyncJobSingle<ShareFileCallback> shareFile(int appId, java.lang.String filename)
ShareFileCallback.appId - The app id of the game.filename - The path to the file being requested.ShareFileCallback.public void handleMsg(IPacketMsg packetMsg)
ClientMsgHandlerhandleMsg in class ClientMsgHandlerpacketMsg - The packet message that contains the data.