LiveEventListQuery
public class LiveEventListQuery
A query class that provides queries used to retrieve a list of live events.
- since; 1.0.0
-
Indicates whether there are more live events to be queried.
- since; 1.0.0
Declaration
Swift
public private(set) var hasNext: Bool { get }
-
Indicates whether there are previous live events to be queried.
Since
1.0.0Declaration
Swift
public private(set) var hasPrev: Bool { get }
-
Indicates whether a query is loading.
Since
1.0.0Declaration
Swift
public internal(set) var isLoading: Bool { get }
-
Retrieves the list of live events prior to the last result set.
Since
1.0.0Declaration
Swift
public func prev(completionHandler: @escaping (([LiveEvent]?, SBError?) -> Void))
-
Retrieves a list of live events after the last result set.
Since
1.0.0Declaration
Swift
public func next(completionHandler: @escaping (([LiveEvent]?, SBError?) -> Void))