FileWriterDelegate

public protocol FileWriterDelegate

Protocol used by classes with file writing responsibilities to notify them when things have been writen or updated

  • Called when a file is written to a particular url

    Declaration

    Swift

    func wroteFile(at url: URL)

    Parameters

    url

    URL the file was written to

  • Called when a file has been updated

    Declaration

    Swift

    func updatedFile(at url: URL)

    Parameters

    url

    URL of the updated file