Contents

reportOutgoingCall(with:connectedAt:)

Reports to the provider that an outgoing call with the specified unique identifier finished connecting at a particular time.

Declaration

func reportOutgoingCall(with UUID: UUID, connectedAt dateConnected: Date?)

Parameters

  • UUID:

    The unique identifier of the call.

  • dateConnected:

    The time at which the call connected. A call is considered connected when both caller and callee can start communicating.

    If nil, the current time is used.

Discussion

An outgoing call should call this method after calling the reportOutgoingCall(with:startedConnectingAt:) and after the call is connected.

See Also

Reporting Calls