Leaderboards.SubmitScoreResult

  • The Leaderboards.SubmitScoreResult interface is deprecated and ScoreSubmissionData is now returned directly in the LeaderboardsClient.

  • This interface represents the result of submitting a leaderboard score, indicating success or failure via a status code.

  • Possible status codes include STATUS_OK for success, STATUS_NETWORK_ERROR_OPERATION_DEFERRED for offline submission, and other codes for various errors.

  • The getScoreData() method returns information about the submitted score and the server's response.

  • The interface inherits methods like getStatus() from Result and release() from Releasable.

public static interface Leaderboards.SubmitScoreResult implements Result Releasable

This interface is deprecated.
ScoreSubmissionData is returned directly in the LeaderboardsClient.

Result delivered when a leaderboard score has been submitted. The statusCode indicates whether or not the score was successfully submitted to the servers.

Possible status codes include:

Public Method Summary

abstract ScoreSubmissionData
getScoreData()
Returns data about the score that was submitted and the response from the server.

Inherited Method Summary

Public Methods

public abstract ScoreSubmissionData getScoreData ()

Returns data about the score that was submitted and the response from the server.