Differences From Artifact [9c39efc51b]:
- File
src/MTXRequest.h
— part of check-in
[17e299f073]
at
2020-10-03 21:56:23
on branch trunk
— Initial support for sync
Only sends the sync, does not do anything with the response yet. Handling the response will be implemented in the next several commits, piece by piece. (user: js, size: 3840) [annotate] [blame] [check-ins using]
To Artifact [a3c3ccbf3a]:
- File src/MTXRequest.h — part of check-in [2682b2dc32] at 2020-10-04 01:18:14 on branch trunk — Include "since" in sync (user: js, size: 3872) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
69 70 71 72 73 74 75 | * @brief The path of the request. */ @property (copy, nonatomic) OFString *path; /** * @brief The query for the request. */ | | > | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | * @brief The path of the request. */ @property (copy, nonatomic) OFString *path; /** * @brief The query for the request. */ @property (copy, nullable, nonatomic) OFDictionary<OFString *, OFString *> *query; /** * @brief An optional body to send along with the request. * * This is a dictionary that gets serialized to JSON when the request is sent. */ @property (copy, nullable, nonatomic) OFDictionary<OFString *, id> *body; |
︙ | ︙ |