Skip to content

Commit bd4cda4

Browse files
Added code documentation for basic and no op event dispatcher.
1 parent 4a257f7 commit bd4cda4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcher.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,17 @@
4646
+ (BOOL)conformsToOPTLYEventDispatcherProtocol:(nonnull Class)instanceClass;
4747
@end
4848

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+
*/
4954
@interface OPTLYEventDispatcherBasic : NSObject <OPTLYEventDispatcher>
5055
@end
5156

57+
/**
58+
* OPTLYEventDispatcherNoOp comforms to the OPTLYEventDispatcher protocol,
59+
* but all methods performa a no op.
60+
*/
5261
@interface OPTLYEventDispatcherNoOp : NSObject<OPTLYEventDispatcher>
5362
@end

0 commit comments

Comments
 (0)