Merge "Clarify DelegateManagerCallback based on API review"

This commit is contained in:
Brad Ebinger
2021-04-30 22:52:15 +00:00
committed by Gerrit Code Review

View File

@@ -35,12 +35,12 @@ import android.telephony.ims.stub.SipDelegate;
public interface DelegateMessageCallback { public interface DelegateMessageCallback {
/** /**
* Send a new incoming SIP message to the remote application for processing. * Sends a new incoming SIP message to the remote application for processing.
*/ */
void onMessageReceived(@NonNull SipMessage message); void onMessageReceived(@NonNull SipMessage message);
/** /**
* Notify the remote application that a previous request to send a SIP message using * Notifies the remote application that a previous request to send a SIP message using
* {@link SipDelegate#sendMessage} has succeeded. * {@link SipDelegate#sendMessage} has succeeded.
* *
* @param viaTransactionId The transaction ID found in the via header field of the * @param viaTransactionId The transaction ID found in the via header field of the
@@ -49,7 +49,7 @@ public interface DelegateMessageCallback {
void onMessageSent(@NonNull String viaTransactionId); void onMessageSent(@NonNull String viaTransactionId);
/** /**
* Notify the remote application that a previous request to send a SIP message using * Notifies the remote application that a previous request to send a SIP message using
* {@link SipDelegate#sendMessage} has failed. * {@link SipDelegate#sendMessage} has failed.
* *
* @param viaTransactionId The Transaction ID found in the via header field of the previously * @param viaTransactionId The Transaction ID found in the via header field of the previously