次の方法で共有


Conference.ConnectionStartElapsedRealtimeMillis Property

Definition

Retrieves the connection start time of the Conference, if specified. -or- Sets the start time of the Conference which is the basis for the determining the duration of the Conference.

public long ConnectionStartElapsedRealtimeMillis { [Android.Runtime.Register("getConnectionStartElapsedRealtimeMillis", "()J", "", ApiSince=30)] get; [Android.Runtime.Register("setConnectionStartElapsedRealtimeMillis", "(J)V", "", ApiSince=30)] set; }
[<get: Android.Runtime.Register("getConnectionStartElapsedRealtimeMillis", "()J", "", ApiSince=30)>]
[<set: Android.Runtime.Register("setConnectionStartElapsedRealtimeMillis", "(J)V", "", ApiSince=30)>]
member this.ConnectionStartElapsedRealtimeMillis : int64 with get, set

Property Value

The elapsed time at which the Conference was connected.

Attributes

Remarks

Property getter documentation:

Retrieves the connection start time of the Conference, if specified. A value of #CONNECT_TIME_NOT_SPECIFIED indicates that Telecom should determine the start time of the conference.

This is based on the value of SystemClock#elapsedRealtime() to ensure that it is not impacted by wall clock changes (user initiated, network initiated, time zone change, etc).

Note: This is only exposed for use by the Telephony framework which needs it to copy conference start times among conference participants. It is exposed as a system API since it has no general use other than to the Telephony framework.

Java documentation for android.telecom.Conference.getConnectionStartElapsedRealtimeMillis().

Property setter documentation:

Sets the start time of the Conference which is the basis for the determining the duration of the Conference.

You should use a value returned by SystemClock#elapsedRealtime() to ensure that time zone changes do not impact the conference duration.

When setting this, you should also set the connection time via #setConnectionTime(long).

Java documentation for android.telecom.Conference.setConnectionStartElapsedRealtimeMillis(long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to