aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Messaging/FIRMessagingTopicsCommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'Firebase/Messaging/FIRMessagingTopicsCommon.h')
-rw-r--r--Firebase/Messaging/FIRMessagingTopicsCommon.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/Firebase/Messaging/FIRMessagingTopicsCommon.h b/Firebase/Messaging/FIRMessagingTopicsCommon.h
index 50d8906..030b3ff 100644
--- a/Firebase/Messaging/FIRMessagingTopicsCommon.h
+++ b/Firebase/Messaging/FIRMessagingTopicsCommon.h
@@ -26,27 +26,4 @@ typedef NS_ENUM(NSInteger, FIRMessagingTopicAction) {
FIRMessagingTopicActionUnsubscribe
};
-/**
- * Represents the possible results of a topic operation.
- */
-typedef NS_ENUM(NSInteger, FIRMessagingTopicOperationResult) {
- FIRMessagingTopicOperationResultSucceeded,
- FIRMessagingTopicOperationResultError,
- FIRMessagingTopicOperationResultCancelled,
-};
-
-/**
- * Callback to invoke once the HTTP call to FIRMessaging backend for updating
- * subscription finishes.
- *
- * @param result The result of the operation. If the result is
- * FIRMessagingTopicOperationResultError, the error parameter will be
- * non-nil.
- * @param error The error which occurred while updating the subscription topic
- * on the FIRMessaging server. This will be nil in case the operation
- * was successful, or if the operation was cancelled.
- */
-typedef void(^FIRMessagingTopicOperationCompletion)
- (FIRMessagingTopicOperationResult result, NSError * _Nullable error);
-
NS_ASSUME_NONNULL_END