FlightDataManager

@objc(GSFlightDataManager)
public protocol FlightDataManager : Facility

This facility provides access to flight data files downloaded from drones.

  • Lists all downloaded flight data files.

    Declaration

    Swift

    var files: Set<URL> { get }
  • Deletes a downloaded flight data file.

    Declaration

    Swift

    func delete(file: URL) -> Bool

    Parameters

    file

    URL of the file flight data file to delete

    Return Value

    true if the specified file did exist and was successfully deleted, false otherwise