LGV_MeetingSDK_Parser_Protocol
public protocol LGV_MeetingSDK_Parser_Protocol : AnyObject
This defines the requirements for an instance of a data parser for the transport.
-
REQUIRED - This parses data, and returns meetings.
Declaration
Swift
func parseThis(searchType: LGV_MeetingSDK_Meeting_Data_Set.SearchConstraints, searchRefinements: Set<LGV_MeetingSDK_Meeting_Data_Set.Search_Refinements>, data: Data, refCon: Any?, completion: @escaping LGV_MeetingSDK_SearchInitiator_Protocol.MeetingSearchCallbackClosure)Parameters
dataThe unparsed data, from the transport. It should consist of a meeting data set.
refConAn arbitrary data attachment to the search. This will be returned in the search results set.
completionA callback, for when the parse is complete. This is escaping, and may not be called in the main thread.
View on GitHub
LGV_MeetingSDK_Parser_Protocol Protocol Reference