Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b72351da authored by Cheuksan Wang's avatar Cheuksan Wang Committed by Android (Google) Code Review
Browse files

Merge "Add an API call to update the status of a pending outbound SMS message...

Merge "Add an API call to update the status of a pending outbound SMS message and resend by PSTN if necessary."
parents 11298830 87487466
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -222,6 +222,17 @@ interface ISms {
     */
    void injectSmsPdu(in byte[] pdu, String format, in PendingIntent receivedIntent);

    /**
     * Update the status of a pending (send-by-IP) SMS message and resend by PSTN if necessary.
     * This outbound message was handled by the carrier app. If the carrier app fails to send
     * this message, it would be resent by PSTN.
     *
     * @param messageRef the reference number of the SMS message.
     * @param success True if and only if the message was sent successfully. If its value is
     *  false, this message should be resent via PSTN.
     */
    void updateSmsSendStatus(int messageRef, boolean success);

    /**
     * Send a multi-part text based SMS.
     *