Firebase Storage is a service that supports uploading and downloading binary objects,
such as images, videos, and other files to Google Cloud Storage. Instances of Storage
are not thread-safe, but can be accessed from any thread.
If you call Storage.storage(), the instance will initialize with the default FirebaseApp,
FirebaseApp.app(), and the storage location will come from the provided
GoogleService-Info.plist.
If you provide a custom instance of FirebaseApp,
the storage location will be specified via the FirebaseOptions.storageBucket property.
A superclass to all Storage tasks, including StorageUploadTask
and StorageDownloadTask, to provide state transitions, event raising, and common storage
for metadata and errors.
Callbacks are always fired on the developer-specified callback queue.
If no queue is specified, it defaults to the main queue.
This class is thread-safe.
An extended StorageTask providing observable semantics that can be used for responding to changes
in task state.
Observers produce a StorageHandle, which is used to keep track of and remove specific
observers at a later date.
StorageDownloadTask implements resumable downloads from an object in Firebase Storage.
Downloads can be returned on completion with a completion handler, and can be monitored
by attaching observers, or controlled by calling pause(), resume(),
or cancel().
Downloads can currently be returned as Data in memory, or as a URL to a file on disk.
Downloads are performed on a background queue, and callbacks are raised on the developer
specified callbackQueue in Storage, or the main queue if left unspecified.
Class which represents the metadata on an object in Firebase Storage. This metadata is
returned on successful operations, and can be used to retrieve download URLs, content types,
and a Storage reference to the object in question. Full documentation can be found at the GCS
Objects#resource docs.
StorageReference represents a reference to a Google Cloud Storage object. Developers can
upload and download objects, as well as get/set object metadata, and delete an object at the
path. See the Cloud docs for more details: https://cloud.google.com/storage/
StorageTaskSnapshot represents an immutable view of a task.
A snapshot contains a task, storage reference, metadata (if it exists),
progress, and an error (if one occurred).
StorageUploadTask implements resumable uploads to a file in Firebase Storage.
Uploads can be returned on completion with a completion callback, and can be monitored
by attaching observers, or controlled by calling pause(), resume(),
or cancel().
Uploads can be initialized from Data in memory, or a URL to a file on disk.
Uploads are performed on a background queue, and callbacks are raised on the developer
specified callbackQueue in Storage, or the main queue if unspecified.
Currently all uploads must be initiated and managed on the main queue.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-08-23 UTC."],[],[],null,["Classes\n\nThe following classes are available globally.\n- `\n ``\n ``\n `\n\n [FIRStorage](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorage)`\n ` \n Firebase Storage is a service that supports uploading and downloading binary objects,\n such as images, videos, and other files to Google Cloud Storage. Instances of `Storage`\n are not thread-safe, but can be accessed from any thread.\n If you call `Storage.storage()`, the instance will initialize with the default `FirebaseApp`,\n `FirebaseApp.app()`, and the storage location will come from the provided\n `GoogleService-Info.plist`.\n If you provide a custom instance of `FirebaseApp`,\n the storage location will be specified via the `FirebaseOptions.storageBucket` property. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorage : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageTask](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageTask)`\n ` \n A superclass to all Storage tasks, including `StorageUploadTask`\n and `StorageDownloadTask`, to provide state transitions, event raising, and common storage\n for metadata and errors.\n Callbacks are always fired on the developer-specified callback queue.\n If no queue is specified, it defaults to the main queue.\n This class is thread-safe. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageTask : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageObservableTask](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageObservableTask)`\n ` \n An extended `StorageTask` providing observable semantics that can be used for responding to changes\n in task state.\n Observers produce a `StorageHandle`, which is used to keep track of and remove specific\n observers at a later date. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageObservableTask : /docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageTask\n\n- `\n ``\n ``\n `\n\n [FIRStorageDownloadTask](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageDownloadTask)`\n ` \n `StorageDownloadTask` implements resumable downloads from an object in Firebase Storage.\n Downloads can be returned on completion with a completion handler, and can be monitored\n by attaching observers, or controlled by calling `pause()`, `resume()`,\n or `cancel()`.\n Downloads can currently be returned as `Data` in memory, or as a `URL` to a file on disk.\n Downloads are performed on a background queue, and callbacks are raised on the developer\n specified `callbackQueue` in Storage, or the main queue if left unspecified. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageDownloadTask\n : /docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageObservableTask \u003c/docs/reference/ios/firebasestorage/api/reference/Protocols/FIRStorageTaskManagement\u003e\n\n- `\n ``\n ``\n `\n\n [FIRStorageListResult](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageListResult)`\n ` \n Contains the prefixes and items returned by a `StorageReference.list()` call. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageListResult : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageMetadata](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageMetadata)`\n ` \n Class which represents the metadata on an object in Firebase Storage. This metadata is\n returned on successful operations, and can be used to retrieve download URLs, content types,\n and a Storage reference to the object in question. Full documentation can be found at the GCS\n Objects#resource docs. \n See\n \u003chttps://cloud.google.com/storage/docs/json_api/v1/objects#resource\u003e \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageMetadata : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageReference](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageReference)`\n ` \n `StorageReference` represents a reference to a Google Cloud Storage object. Developers can\n upload and download objects, as well as get/set object metadata, and delete an object at the\n path. See the Cloud docs for more details: \u003chttps://cloud.google.com/storage/\u003e \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageReference : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageTaskSnapshot](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageTaskSnapshot)`\n ` \n `StorageTaskSnapshot` represents an immutable view of a task.\n A snapshot contains a task, storage reference, metadata (if it exists),\n progress, and an error (if one occurred). \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageTaskSnapshot : NSObject\n\n- `\n ``\n ``\n `\n\n [FIRStorageUploadTask](/docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageUploadTask)`\n ` \n `StorageUploadTask` implements resumable uploads to a file in Firebase Storage.\n Uploads can be returned on completion with a completion callback, and can be monitored\n by attaching observers, or controlled by calling `pause()`, `resume()`,\n or `cancel()`.\n Uploads can be initialized from `Data` in memory, or a URL to a file on disk.\n Uploads are performed on a background queue, and callbacks are raised on the developer\n specified `callbackQueue` in Storage, or the main queue if unspecified.\n Currently all uploads must be initiated and managed on the main queue. \n\n Declaration \n Objective-C \n\n\n @interface FIRStorageUploadTask\n : /docs/reference/ios/firebasestorage/api/reference/Classes/FIRStorageObservableTask \u003c/docs/reference/ios/firebasestorage/api/reference/Protocols/FIRStorageTaskManagement\u003e"]]