Differences From Artifact [8a0c920770]:
- File src/MTXRequest.m — part of check-in [c29845b7b8] at 2020-10-03 16:21:34 on branch trunk — MTXClient: Add support for logging out (user: js, size: 4966) [annotate] [blame] [check-ins using]
To Artifact [3b4c617815]:
- File
src/MTXRequest.m
— part of check-in
[d18fbd29fb]
at
2020-10-03 17:23:45
on branch trunk
— Get rid of async prefix
All operations are async anyway. (user: js, size: 4961) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
83 84 85 86 87 88 89 | - (OFDictionary<OFString *, id> *)body { return [OFString stringWithUTF8String: _body.items length: _body.count] .objectByParsingJSON; } | | | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - (OFDictionary<OFString *, id> *)body { return [OFString stringWithUTF8String: _body.items length: _body.count] .objectByParsingJSON; } - (void)performWithBlock: (mtx_request_block_t)block { void *pool = objc_autoreleasePoolPush(); if (_block != nil) /* Not the best exception to indicate it's already in-flight. */ @throw [OFAlreadyConnectedException exception]; |
︙ | ︙ |