Skip to content

[iOS]: Added buffering and flushing logic for event emitters #312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from

Conversation

kushCT
Copy link
Contributor

@kushCT kushCT commented Apr 29, 2025

Background

If an event is posted before CleverTapPlugin starts observing, the event will be lost.
For example, if an event is sent on AppDelegate didFinishLaunchingWithOptions it will not be received in the Dart listener.
This currently happens with the CleverTapProfileDidInitialize which is also sent/posted before the events are observed.

Implementation

  • Upgraded event handling, ensuring that events are queued until listeners are active and then dispatched promptly.
  • Improved event observation by automating the management and clearing of pending events.
  • Introduced a new component for managing pending events, enhancing the overall responsiveness and reliability of event-based interactions.

Summary by CodeRabbit

  • New Features

    • Added event buffering for certain events in the iOS plugin, ensuring events are delivered after the corresponding handler is registered.
    • Introduced a new event class to manage pending events in the iOS plugin.
  • Refactor

    • Standardized event names used for handler registration and event emission.
    • Updated event dispatching mechanism in iOS to improve reliability and consistency.
  • Bug Fixes

    • Resolved issues where some events could be missed if handlers were registered late.
  • Chores

    • Minor project configuration updates for iOS.

@kushCT kushCT requested a review from CTLalit April 29, 2025 08:36
Copy link

coderabbitai bot commented Apr 29, 2025

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

This update introduces an event buffering mechanism for CleverTap events in the iOS plugin, with new Objective-C classes and methods to support event queuing and emission. It standardizes event names in the Dart interface, removes platform checks, and updates notification dispatching logic to use the new buffering approach. Xcode project files are updated for internal consistency.

Changes

File(s) Change Summary
ios/Classes/CleverTapPluginPendingEvent.h, ios/Classes/CleverTapPluginPendingEvent.m Added new class CleverTapPluginPendingEvent for buffering events with name and body properties and an initializer.
ios/Classes/CleverTapPlugin.h Declared new method sendEventOnObserving:andBody: in CleverTapPlugin.
ios/Classes/CleverTapPlugin.m Added event buffering logic, static collections, new methods for event emission, and refactored delegate methods to use buffering.
ios/Classes/CleverTapPluginAppFunctionPresenter.m, ios/Classes/CleverTapPluginTemplatePresenter.m Replaced notification posting with calls to sendEventOnObserving:andBody: for event dispatching.
lib/clevertap_plugin.dart Standardized event names, removed platform check in invokeStartEmission, updated all handler setters to use new event names.
example/ios/Runner.xcodeproj/project.pbxproj Updated internal UUIDs and build phase order for Pods and shell script phases; no logic changes.

Sequence Diagram(s)

sequenceDiagram
    participant Dart
    participant FlutterPlugin
    participant CleverTapPlugin
    participant EventBuffer

    Dart->>FlutterPlugin: setHandler(eventName)
    FlutterPlugin->>CleverTapPlugin: invokeMethod("startEmission", eventName)
    CleverTapPlugin->>CleverTapPlugin: startObservingEvent(eventName)
    CleverTapPlugin->>EventBuffer: Flush buffered events for eventName
    loop On CleverTap event
        CleverTapPlugin->>CleverTapPlugin: sendEventOnObserving(eventName, body)
        alt Buffering enabled and not observed
            CleverTapPlugin->>EventBuffer: Buffer event
        else Observed
            CleverTapPlugin->>FlutterPlugin: send event to Dart
        end
    end
Loading

Suggested reviewers

  • CTLalit
  • nishant-clevertap

Poem

A hop, a skip, a buffered leap,
CleverTap events no longer sleep.
With queues and names now nice and neat,
The plugin’s flow is quite a feat!
From Dart to iOS, all in sync—
The rabbit’s code is in the pink! 🐇✨


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@kushCT kushCT requested a review from Anush-Shand April 30, 2025 05:11
@kushCT
Copy link
Contributor Author

kushCT commented Jun 6, 2025

@coderabbitai review

Copy link

coderabbitai bot commented Jun 6, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🔭 Outside diff range comments (1)
lib/clevertap_plugin.dart (1)

247-248: ⚠️ Potential issue

Fix event name inconsistencies.

The event names passed to invokeStartEmission don't match the corresponding handler method names:

  1. Line 247: Uses 'CleverTapInAppNotificationShowed' but handler expects "inAppNotificationShow" (line 93)
  2. Line 325: Uses 'CleverTapPushAmpPayloadReceived' but handler expects "pushAmpPayloadReceived" (line 143)
 void setCleverTapInAppNotificationShowHandler(CleverTapInAppNotificationShowHandler handler) {
-    invokeStartEmission('CleverTapInAppNotificationShowed');
+    invokeStartEmission('inAppNotificationShow');
     cleverTapInAppNotificationShowHandler = handler;
   }
 void setCleverTapPushAmpPayloadReceivedHandler(CleverTapPushAmpPayloadReceivedHandler handler) {
-    invokeStartEmission('CleverTapPushAmpPayloadReceived');
+    invokeStartEmission('pushAmpPayloadReceived');
     cleverTapPushAmpPayloadReceivedHandler = handler;
   }

Also applies to: 325-326

🧹 Nitpick comments (2)
ios/Classes/CleverTapPlugin.m (1)

1793-1806: Enhance the event flushing implementation.

The flushing logic is correct but could be more robust:

  1. Add error handling for method channel invocations:
 for (CleverTapPluginPendingEvent *event in events) {
-    [self.nativeToDartMethodChannel invokeMethod:event.name arguments:event.body];
+    @try {
+        [self.nativeToDartMethodChannel invokeMethod:event.name arguments:event.body];
+    } @catch (NSException *exception) {
+        NSLog(@"CleverTapFlutter: Failed to flush event %@: %@", event.name, exception);
+    }
 }
  1. Consider memory management for the observedEvents set - it grows indefinitely:
+// Optional: Add method to clear observed events when listener is removed
+- (void)stopObservingEvent:(NSString *)eventName {
+    [observedEvents removeObject:eventName];
+}
lib/clevertap_plugin.dart (1)

8-10: Remove duplicate import.

The package:flutter/foundation.dart import is duplicated on lines 8 and 10.

 import 'package:flutter/services.dart';
-import 'package:flutter/foundation.dart' show kIsWeb;
+import 'package:flutter/foundation.dart' show kIsWeb;
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 796683a and cb9e270.

⛔ Files ignored due to path filters (1)
  • example/ios/Podfile.lock is excluded by !**/*.lock
📒 Files selected for processing (8)
  • example/ios/Runner.xcodeproj/project.pbxproj (9 hunks)
  • ios/Classes/CleverTapPlugin.h (1 hunks)
  • ios/Classes/CleverTapPlugin.m (8 hunks)
  • ios/Classes/CleverTapPluginAppFunctionPresenter.m (1 hunks)
  • ios/Classes/CleverTapPluginPendingEvent.h (1 hunks)
  • ios/Classes/CleverTapPluginPendingEvent.m (1 hunks)
  • ios/Classes/CleverTapPluginTemplatePresenter.m (1 hunks)
  • lib/clevertap_plugin.dart (3 hunks)
🔇 Additional comments (11)
ios/Classes/CleverTapPlugin.h (1)

36-36: LGTM: Clean method declaration for event buffering.

The new method declaration follows proper Objective-C conventions and clearly indicates its purpose for conditional event emission based on observation state.

ios/Classes/CleverTapPluginAppFunctionPresenter.m (1)

16-16: LGTM: Proper integration with new buffering mechanism.

The switch from postNotificationWithName:andBody: to sendEventOnObserving:andBody: correctly integrates with the new event buffering system while maintaining the same event data structure.

ios/Classes/CleverTapPluginTemplatePresenter.m (1)

16-16: LGTM: Consistent adoption of event buffering mechanism.

Both method calls correctly switch to the new sendEventOnObserving:andBody: approach, maintaining consistency with the event buffering system while preserving the existing event data structure and logic.

Also applies to: 22-22

ios/Classes/CleverTapPluginPendingEvent.h (1)

1-14: LGTM: Clean and well-structured header file.

The CleverTapPluginPendingEvent class is appropriately designed as a simple data container for buffered events. The memory management annotations and non-null specifications are correctly applied.

example/ios/Runner.xcodeproj/project.pbxproj (1)

12-12: LGTM: Routine Xcode project maintenance.

The UUID updates for CocoaPods references and build phase reordering are standard Xcode project maintenance changes with no impact on functionality.

Also applies to: 37-37, 40-40, 45-45, 57-57, 66-66, 76-78, 88-88, 156-156, 163-163, 222-242, 260-260

ios/Classes/CleverTapPlugin.m (4)

19-19: LGTM: Correct import for the new pending event class.


67-91: LGTM: Proper initialization of buffering collections.

The static collection initialization using implicit dispatch_once through the singleton pattern is appropriate, and the bufferable events set is correctly configured.


127-131: LGTM: Clean implementation of startEmission method handling.

The method correctly extracts the event name and delegates to the appropriate observation method.


1685-1765: LGTM: Consistent conversion of delegate methods to use buffering.

All delegate methods correctly use the new sendEventOnObserving:andBody: method instead of posting notifications directly. The pattern is consistent across all event types.

lib/clevertap_plugin.dart (2)

227-337: LGTM! Event name standardization looks good.

The standardization of event names to match the handler method names is correctly implemented across most of the modified setter methods. This should improve consistency between the Dart side and native implementations.


222-224:

✅ Verification successful

Verify cross-platform compatibility after removing platform checks.

The invokeStartEmission method now makes unconditional native method calls. Ensure this doesn't cause issues on platforms that don't support the startEmission method.

Based on the AI summary, Android-only platform checks were removed. Let me verify if this change might cause issues on other platforms:


🏁 Script executed:

#!/bin/bash
# Description: Check if startEmission method is implemented across all platforms

# Search for startEmission implementation in iOS and Android native code
echo "Searching for startEmission implementations..."
fd "CleverTapPlugin" --type f --extension m --extension java --extension kt | xargs rg -A 5 "startEmission"

# Check for platform-specific method channel implementations
rg -A 10 -B 5 "methodCallHandler.*startEmission\|startEmission.*methodCallHandler"

Length of output: 1188


🏁 Script executed:

#!/bin/bash
# List all Java and Kotlin source files under the Android plugin directory (if present)
echo "Java/Kotlin files in android/src/main:"
find android/src/main -type f \( -name "*.java" -o -name "*.kt" \)

# Search within those files for any handling of 'startEmission'
echo "Searching for 'startEmission' in Android plugin sources..."
rg -n "startEmission" -C5 android/src/main

Length of output: 4243


startEmission is implemented on both iOS and Android

I’ve confirmed that the startEmission method is handled in:

  • iOS: ios/Classes/CleverTapPlugin.m
  • Android: android/src/main/java/com/clevertap/clevertap_plugin/DartToNativePlatformCommunicator.kt

Since both mobile platforms support startEmission, the unconditional call is safe.

Comment on lines +5 to +12
- (instancetype)initWithName:(NSString *)name body:(NSDictionary *)body {
self = [super init];
if (self) {
_name = name;
_body = body;
}
return self;
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add input validation and consider defensive copying.

The initializer should validate input parameters and consider copying the body dictionary to prevent external modifications.

- (instancetype)initWithName:(NSString *)name body:(NSDictionary *)body {
    self = [super init];
    if (self) {
-        _name = name;
-        _body = body;
+        if (!name) {
+            return nil;
+        }
+        _name = [name copy];
+        _body = body ? [body copy] : @{};
    }
    return self;
}

This ensures:

  • Non-nil name parameter (essential for event identification)
  • Defensive copying to prevent external mutations
  • Safe handling of nil body parameter
🤖 Prompt for AI Agents
In ios/Classes/CleverTapPluginPendingEvent.m around lines 5 to 12, the
initializer lacks input validation and defensive copying. Modify the
initWithName:body: method to check that the name parameter is non-nil and handle
the case where body might be nil. Also, perform a defensive copy of the body
dictionary to prevent external modifications after initialization.

Comment on lines +102 to +111
// Create the reset buffer block
resetBufferBlock = dispatch_block_create(0, ^{
[pendingEvents removeAllObjects];
isBufferingEnabled = NO;
});

// Schedule buffer cleanup after app finishes launching
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(kEventBufferTimeoutSeconds * NSEC_PER_SEC)),
dispatch_get_main_queue(),
resetBufferBlock);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Reconsider the timeout logic for buffer management.

The current timeout implementation completely disables buffering and clears all pending events after 5 seconds. This approach is too aggressive and could cause legitimate events to be lost.

Consider a more nuanced approach:

-resetBufferBlock = dispatch_block_create(0, ^{
-    [pendingEvents removeAllObjects];
-    isBufferingEnabled = NO;
-});
+resetBufferBlock = dispatch_block_create(0, ^{
+    // Only clear events older than timeout, keep buffering enabled
+    NSLog(@"CleverTapFlutter: Buffer timeout reached, clearing old events");
+    // Consider keeping buffering enabled for future events
+});

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In ios/Classes/CleverTapPlugin.m around lines 102 to 111, the current logic
clears all pending events and disables buffering after a fixed 5-second timeout,
which is too aggressive and risks losing legitimate events. Modify the timeout
handling to implement a more nuanced approach, such as extending the timeout
duration, conditionally clearing events based on specific criteria, or
implementing a retry mechanism to preserve important events instead of clearing
them outright after the timeout.

Comment on lines +1771 to +1791
- (void)sendEventOnObserving:(NSString *)name andBody:(NSDictionary *)body {
// Only buffer events that are explicitly marked as bufferable
if ([bufferableEvents containsObject:name] &&
![observedEvents containsObject:name] &&
isBufferingEnabled) {

if (!pendingEvents[name]) {
pendingEvents[name] = [NSMutableArray array];
}

// Create and add the event to the buffer without limit
CleverTapPluginPendingEvent *event = [[CleverTapPluginPendingEvent alloc] initWithName:name body:body];
[pendingEvents[name] addObject:event];
NSLog(@"CleverTapFlutter: Buffering event %@ for later emission", name);
return;
}

// Otherwise post the notification normally
[[NSNotificationCenter defaultCenter] postNotificationName:name object:nil userInfo:body];

}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Improve the event buffering implementation.

The buffering logic is sound but needs enhancements for production use:

  1. Add bounds checking to prevent memory issues:
+static const NSUInteger kMaxEventsPerType = 100;

 if (!pendingEvents[name]) {
     pendingEvents[name] = [NSMutableArray array];
 }

+// Prevent unbounded growth
+if ([pendingEvents[name] count] >= kMaxEventsPerType) {
+    [pendingEvents[name] removeObjectAtIndex:0]; // Remove oldest
+}
  1. Add thread safety (as mentioned in previous comment)

  2. Improve logging with more context:

-NSLog(@"CleverTapFlutter: Buffering event %@ for later emission", name);
+NSLog(@"CleverTapFlutter: Buffering event %@ (total: %lu) for later emission", 
+      name, (unsigned long)[pendingEvents[name] count]);
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- (void)sendEventOnObserving:(NSString *)name andBody:(NSDictionary *)body {
// Only buffer events that are explicitly marked as bufferable
if ([bufferableEvents containsObject:name] &&
![observedEvents containsObject:name] &&
isBufferingEnabled) {
if (!pendingEvents[name]) {
pendingEvents[name] = [NSMutableArray array];
}
// Create and add the event to the buffer without limit
CleverTapPluginPendingEvent *event = [[CleverTapPluginPendingEvent alloc] initWithName:name body:body];
[pendingEvents[name] addObject:event];
NSLog(@"CleverTapFlutter: Buffering event %@ for later emission", name);
return;
}
// Otherwise post the notification normally
[[NSNotificationCenter defaultCenter] postNotificationName:name object:nil userInfo:body];
}
- (void)sendEventOnObserving:(NSString *)name andBody:(NSDictionary *)body {
// Only buffer events that are explicitly marked as bufferable
if ([bufferableEvents containsObject:name] &&
![observedEvents containsObject:name] &&
isBufferingEnabled) {
// Cap the number of buffered events to avoid memory issues
static const NSUInteger kMaxEventsPerType = 100;
if (!pendingEvents[name]) {
pendingEvents[name] = [NSMutableArray array];
}
// Prevent unbounded growth
if ([pendingEvents[name] count] >= kMaxEventsPerType) {
[pendingEvents[name] removeObjectAtIndex:0]; // evict oldest
}
// Create and add the event to the buffer
CleverTapPluginPendingEvent *event =
[[CleverTapPluginPendingEvent alloc] initWithName:name body:body];
[pendingEvents[name] addObject:event];
NSLog(@"CleverTapFlutter: Buffering event %@ (total: %lu) for later emission",
name, (unsigned long)[pendingEvents[name] count]);
return;
}
// Otherwise post the notification normally
[[NSNotificationCenter defaultCenter] postNotificationName:name
object:nil
userInfo:body];
}
🤖 Prompt for AI Agents
In ios/Classes/CleverTapPlugin.m around lines 1771 to 1791, enhance the
sendEventOnObserving method by adding bounds checking to limit the size of the
pendingEvents buffer to prevent memory issues, implement thread safety by
synchronizing access to shared resources like pendingEvents to avoid race
conditions, and improve logging by including more context such as the current
buffer size and event details when buffering events.

Comment on lines +30 to 36
static NSMutableDictionary<NSString *, NSMutableArray<CleverTapPluginPendingEvent *> *> *pendingEvents;
static NSMutableSet<NSString *> *bufferableEvents;
static NSMutableSet<NSString *> *observedEvents;
static BOOL isBufferingEnabled = YES;
static const NSTimeInterval kEventBufferTimeoutSeconds = 5.0; // 5 seconds timeout for pending event to get removed
static dispatch_block_t resetBufferBlock;

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Address thread safety concerns with static collections.

The static collections (pendingEvents, bufferableEvents, observedEvents) are accessed from multiple threads without synchronization, which can lead to race conditions and crashes.

Consider adding synchronization using either:

  1. @synchronized blocks around collection access
  2. A dedicated serial dispatch queue for buffering operations
  3. Using thread-safe collection classes
+static dispatch_queue_t bufferingQueue;

// In init method:
+bufferingQueue = dispatch_queue_create("com.clevertap.buffering", DISPATCH_QUEUE_SERIAL);
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
static NSMutableDictionary<NSString *, NSMutableArray<CleverTapPluginPendingEvent *> *> *pendingEvents;
static NSMutableSet<NSString *> *bufferableEvents;
static NSMutableSet<NSString *> *observedEvents;
static BOOL isBufferingEnabled = YES;
static const NSTimeInterval kEventBufferTimeoutSeconds = 5.0; // 5 seconds timeout for pending event to get removed
static dispatch_block_t resetBufferBlock;
static NSMutableDictionary<NSString *, NSMutableArray<CleverTapPluginPendingEvent *> *> *pendingEvents;
static NSMutableSet<NSString *> *bufferableEvents;
static NSMutableSet<NSString *> *observedEvents;
static BOOL isBufferingEnabled = YES;
static const NSTimeInterval kEventBufferTimeoutSeconds = 5.0; // 5 seconds timeout for pending event to get removed
static dispatch_block_t resetBufferBlock;
static dispatch_queue_t bufferingQueue;
🤖 Prompt for AI Agents
In ios/Classes/CleverTapPlugin.m around lines 30 to 36, the static collections
pendingEvents, bufferableEvents, and observedEvents are accessed from multiple
threads without synchronization, risking race conditions. To fix this, introduce
a dedicated serial dispatch queue to synchronize all accesses and mutations to
these collections, ensuring thread safety. Replace direct accesses with
dispatch_async or dispatch_sync calls on this queue to serialize operations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants