CalendarMeetingObserver

interface CalendarMeetingObserver

Callback to receive the events from a CalendarMeetingClient.

Since

3.2.0

Types

Link copied to clipboard
class CalendarMeetingAdded(calendarMeeting: CalendarMeeting) : CalendarMeetingObserver.CalendarMeetingEvent

The event when a new meeting is created

Link copied to clipboard
interface CalendarMeetingEvent

Marker interface for all calendar meeting events.

Link copied to clipboard
class CalendarMeetingRemoved(calendarMeetingId: String) : CalendarMeetingObserver.CalendarMeetingEvent

The event when a meeting is removed

Link copied to clipboard
class CalendarMeetingUpdated(calendarMeeting: CalendarMeeting) : CalendarMeetingObserver.CalendarMeetingEvent

The event when an existing meeting is updated or changed

Functions

Link copied to clipboard
abstract fun onEvent(event: CalendarMeetingObserver.CalendarMeetingEvent)

Invoked when there is a new CalendarMeetingEvent.