Most visited

Recently visited

Added in API level 22

CarrierMessagingService.SendMultipartSmsResult

public static final class CarrierMessagingService.SendMultipartSmsResult
extends Object

java.lang.Object
   ↳ android.service.carrier.CarrierMessagingService.SendMultipartSmsResult


The result of sending a multipart SMS.

Summary

Public constructors

CarrierMessagingService.SendMultipartSmsResult(int sendStatus, int[] messageRefs)

Constructs a SendMultipartSmsResult with the send status and message references for the just-sent multipart SMS.

Public methods

int[] getMessageRefs()

Returns the message references of the just-sent multipart SMS.

int getSendStatus()

Returns the send status of the just-sent SMS.

Inherited methods

From class java.lang.Object

Public constructors

CarrierMessagingService.SendMultipartSmsResult

Added in API level 22
CarrierMessagingService.SendMultipartSmsResult (int sendStatus, 
                int[] messageRefs)

Constructs a SendMultipartSmsResult with the send status and message references for the just-sent multipart SMS.

Parameters
sendStatus int: send status, one of SEND_STATUS_OK, SEND_STATUS_RETRY_ON_CARRIER_NETWORK, and SEND_STATUS_ERROR.
messageRefs int: an array of message references, one for each part of the multipart SMS. This field is applicable only if send status is SEND_STATUS_OK.

Public methods

getMessageRefs

Added in API level 22
int[] getMessageRefs ()

Returns the message references of the just-sent multipart SMS.

Returns
int[] the message references, one for each part of the multipart SMS

getSendStatus

Added in API level 22
int getSendStatus ()

Returns the send status of the just-sent SMS.

Returns
int the send status

Hooray!