RecommendedServerIssue

interface RecommendedServerIssue

Types

InvalidProductName
Link copied to clipboard
data class InvalidProductName(productName: String?) : RecommendedServerIssue

The product name in the system information is incorrect.

MissingSystemInfo
Link copied to clipboard
data class MissingSystemInfo(throwable: Throwable?) : RecommendedServerIssue

No system information found. This could happen due too networking issues or an invalid server address.

MissingVersion
Link copied to clipboard
object MissingVersion : RecommendedServerIssue

No version found in system information.

OutdatedServerVersion
Link copied to clipboard
data class OutdatedServerVersion(version: ServerVersion) : RecommendedServerIssue

The SDK uses a newer version of the API compared to the server. While this normally shouldn't be a problem, it may potentially cause problems like crashes.

SlowResponse
Link copied to clipboard
data class SlowResponse(responseTime: Long) : RecommendedServerIssue

The system information response was slow.

UnsupportedServerVersion
Link copied to clipboard
data class UnsupportedServerVersion(version: ServerVersion) : RecommendedServerIssue

The SDK does not support the server version.

Inheritors

MissingSystemInfo
Link copied to clipboard
InvalidProductName
Link copied to clipboard
MissingVersion
Link copied to clipboard
UnsupportedServerVersion
Link copied to clipboard
OutdatedServerVersion
Link copied to clipboard
SlowResponse
Link copied to clipboard