CallControl.RequestCallEndpointChange メソッド

定義

CallEndpoint の変更を要求します。

[Android.Runtime.Register("requestCallEndpointChange", "(Landroid/telecom/CallEndpoint;Ljava/util/concurrent/Executor;Landroid/os/OutcomeReceiver;)V", "", ApiSince=34)]
public void RequestCallEndpointChange(Android.Telecom.CallEndpoint callEndpoint, Java.Util.Concurrent.IExecutor executor, Android.OS.IOutcomeReceiver callback);
[<Android.Runtime.Register("requestCallEndpointChange", "(Landroid/telecom/CallEndpoint;Ljava/util/concurrent/Executor;Landroid/os/OutcomeReceiver;)V", "", ApiSince=34)>]
member this.RequestCallEndpointChange : Android.Telecom.CallEndpoint * Java.Util.Concurrent.IExecutor * Android.OS.IOutcomeReceiver -> unit

パラメーター

callEndpoint
CallEndpoint

変更する CallEndpoint

executor
IExecutor

Executorコールバックが呼び出されるOutcomeReceiver

callback
IOutcomeReceiver

通信側で完了する OutcomeReceiver 。要求された操作の成功または失敗について詳しく説明します。

                            <code data-dev-comment-type="c">OutcomeReceiver#onResult</code> will be called if Telecom has
                            successfully changed the CallEndpoint that was requested.

                            <code data-dev-comment-type="c">OutcomeReceiver#onError</code> will be called if Telecom has failed to
                            switch to the requested CallEndpoint.  A <code data-dev-comment-type="c">CallException</code> will be
                            passed that details why the operation failed.
属性

注釈

CallEndpoint の変更を要求します。 クライアントは、変更を要求するときに独自の CallEndpoint を定義しないでください。 代わりに、新しいエンドポイントは、 CallEventCallback#onAvailableCallEndpointsChanged(List)によって提供される有効なエンドポイントの 1 つである必要があります。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象