We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a257f7 commit bd4cda4Copy full SHA for bd4cda4
OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcher.h
@@ -46,8 +46,17 @@
46
+ (BOOL)conformsToOPTLYEventDispatcherProtocol:(nonnull Class)instanceClass;
47
@end
48
49
+/**
50
+ * OPTLYEventDispatcherBasic is a very simple implementation of the OPTLYEventDispatcher protocol.
51
+ * It dispatches events without any failure mechanisms (e.g., events are not queued up for a loater
52
+ * retry.
53
+ */
54
@interface OPTLYEventDispatcherBasic : NSObject <OPTLYEventDispatcher>
55
56
57
58
+ * OPTLYEventDispatcherNoOp comforms to the OPTLYEventDispatcher protocol,
59
+ * but all methods performa a no op.
60
61
@interface OPTLYEventDispatcherNoOp : NSObject<OPTLYEventDispatcher>
62
0 commit comments