Class MeetingManager

ContactManager instance is obtained by calling the getMeetingManager method of Session and must not be directly instantiated.

Hierarchy

  • MeetingManager

Properties

initLock: default = ...
meetingService: MeetingService
meetings$: Observable<List<Meeting>> = ...
meetingsSubject: BehaviorSubject<List<Meeting>> = ...

Methods

  • Creates a meeting

    Returns

    The just created meeting

    Parameters

    • name: string

      The name of the meeting.

    • participants: Iterable<MeetingParticipant>

      The participants of the new meeting session.

    • validSince: number

      The timestamp of the moment when the meeting starts.

    • Optional validUntil: number

      The timestamp until the meeting is valid.

    • sendSms: boolean = false

      If true, an invitation for the meeting will be sent in an SMS by the server.

    • Optional password: string

      Password for meeting access protection

    Returns Promise<Meeting>

  • Parameters

    • __namedParameters: {
          id: string;
      }
      • id: string

    Returns void

Generated using TypeDoc