Signaling (previously RTM) SDK v1.5.0 API Reference for Android
Public Attributes | List of all members
io.agora.rtm.RtmStatusCode.UploadMediaError Interface Reference

Public Attributes

int  UPLOAD_MEDIA_ERR_OK = 0
 
int  UPLOAD_MEDIA_ERR_FAILURE = 1
 
int  UPLOAD_MEDIA_ERR_INVALID_ARGUMENT = 2
 
int  UPLOAD_MEDIA_ERR_TIMEOUT = 3
 
int  UPLOAD_MEDIA_ERR_SIZE_OVERFLOW = 4
 
int  UPLOAD_MEDIA_ERR_CONCURRENCY_LIMIT_EXCEEDED = 5
 
int  UPLOAD_MEDIA_ERR_INTERRUPTED = 6
 
int  UPLOAD_MEDIA_ERR_NOT_INITIALIZED = 101
 
int  UPLOAD_MEDIA_ERR_NOT_LOGGED_IN = 102
 

Detailed Description

Error codes related to uploading a file or image.

Member Data Documentation

◆ UPLOAD_MEDIA_ERR_OK

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_OK = 0

0: The method call succeeds, or the operation succeeds.

◆ UPLOAD_MEDIA_ERR_FAILURE

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_FAILURE = 1

1: Unknown common failure. Please check whether the file exists and whether you have access to the file.

◆ UPLOAD_MEDIA_ERR_INVALID_ARGUMENT

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_INVALID_ARGUMENT = 2

2: The argument you put is invalid. For example, mediaId is in the wrong format.

◆ UPLOAD_MEDIA_ERR_TIMEOUT

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_TIMEOUT = 3

3: A timeout occurs. The current timeout is set as 120 seconds. The SDK assumes that a timeout occurs if it has not detected any file transmission between the SDK and the file server for 120 seconds.

◆ UPLOAD_MEDIA_ERR_SIZE_OVERFLOW

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_SIZE_OVERFLOW = 4

4: The size of the file or image to upload exceeds 30 MB.

◆ UPLOAD_MEDIA_ERR_CONCURRENCY_LIMIT_EXCEEDED

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_CONCURRENCY_LIMIT_EXCEEDED = 5

5: You have exceeded the upper limit for file upload. You can initiate a maximum of nine file upload or download tasks at the same time (upload and download tasks count together).

◆ UPLOAD_MEDIA_ERR_INTERRUPTED

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_INTERRUPTED = 6

6: The file or image upload task is aborted for either of the following reasons:

  • The user in the CONNECTION_STATE_ABORTED state.
  • The user has cancelled the upload task.

◆ UPLOAD_MEDIA_ERR_NOT_INITIALIZED

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_NOT_INITIALIZED = 101

101: RtmClient is not initialized.

◆ UPLOAD_MEDIA_ERR_NOT_LOGGED_IN

int io.agora.rtm.RtmStatusCode.UploadMediaError.UPLOAD_MEDIA_ERR_NOT_LOGGED_IN = 102

102: The user does not call the login method, or the method call of login does not succeed before this operation.