Conversations

A conversation is a concept that represents communication between a local participant and one or more remote participants, which can be either real people or applications. A conversation can be thought of as two-dimensional, with the number of media modalities representing one dimension, and the number of participants representing the other. In Microsoft Unified Communications Managed API (UCMA) a conversation is represented by the Conversation class.

A Microsoft Unified Communications Managed API (UCMA) 3.0 application can initiate a conversation in either of the following modalities.

  • A single-mode Instant Message (IM) or audio conversation. (Other modes are possible, but require extending the Microsoft Unified Communications Managed API (UCMA) 3.0 platform to work with calls that use different media types.)

  • A multimodal conversation.

A conversation is also distinguished by its number of participants: a conversation involving two parties is a two-party conversation. A conversation with three or more participants is called a multiparty conversation.

  • A two-party conversation is one that consists of a local participant and a single remote participant.

  • A multiparty conversation is one that consists of a local participant and two or more remote participants. An application can start a multiparty conversation directly, or can escalate a two-party conversation to a multi-party conversation (a conference).

The majority of conversations occur between two participants. In order to optimize such conversations so that they conserve server resources, these conversations are (by default) carried out with media travelling peer-to-peer along the best available path, while the signaling continues to be proxied by Lync Server 2010.

MCU-type Conversations

A local endpoint associated with the conversation can have multiple calls with the same modality, provided that the value of the local endpoint’s EndpointType property is Conference. Such a conversation is called an MCU (multi-point control unit)-type conversation. If the endpoint’s EndpointType property is any other value (User, Application, or Gateway), each media type present can be associated with only one call.

An MCU type conversation is a variation of multiparty conversation except for one main difference; an MCU type conversation can have multiple established calls with the same modality. Typically, an application uses a MCU-type conversation when it wants to build an MCU application.

In This Section