-
Notifications
You must be signed in to change notification settings - Fork 26
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
Fix RealtimePresence.get #299
Conversation
c790c20
to
f029fc6
Compare
One of the problems is related with the order of the members in the |
3ce8d63
to
957b709
Compare
@ricardopereira I'd say we should leave it unspecified. I don't see how the order matters. |
@tcard Looks good? |
@@ -33,8 +33,8 @@ ART_ASSUME_NONNULL_BEGIN | |||
- (void)publish:(__GENERIC(NSArray, ARTMessage *) *)messages; | |||
- (void)publish:(__GENERIC(NSArray, ARTMessage *) *)messages callback:(art_nullable void (^)(ARTErrorInfo *__art_nullable error))callback; | |||
|
|||
- (void)history:(void(^)(__GENERIC(ARTPaginatedResult, ARTMessage *) *__art_nullable result, NSError *__art_nullable error))callback; | |||
- (BOOL)history:(art_nullable ARTDataQuery *)query callback:(void(^)(__GENERIC(ARTPaginatedResult, ARTMessage *) *__art_nullable result, NSError *__art_nullable error))callback error:(NSError *__art_nullable *__art_nullable)errorPtr; | |||
- (void)history:(void(^)(__GENERIC(ARTPaginatedResult, ARTMessage *) *__art_nullable result, ARTErrorInfo *__art_nullable error))callback; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change needs to be done in https://github.com/ably/docs as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean the code examples?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue #304
- Linker error: "Undefined symbols for architecture x86_64: _OBJC_CLASS_$_ARTRealtimePresenceQuery", referenced from: type metadata accessor for __ObjC.ARTRealtimePresenceQuery in RealtimeClientPresence.o ld: symbol(s) not found for architecture x86_64"
…esenceQuery be default
- `attach` callback uses an ARTErrorInfo instead of NSError.
4e80dc2
to
58302a5
Compare
58302a5
to
0b72bdc
Compare
Fix: RealtimePresence.get
Add transportParams clientOption to features spec
#271