aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCall.m
Commit message (Collapse)AuthorAge
* Use nil function instead of empty functionGravatar Muxi Yan2016-10-28
|
* Revert format changes in related filesGravatar Muxi Yan2016-10-28
|
* Create connectivityMonitor after call is set upGravatar Muxi Yan2016-10-25
|
* clang-format format cleanGravatar Muxi Yan2016-10-25
|
* Fix stupid compiler errorGravatar Muxi Yan2016-10-21
|
* Do not finish call with error when switching between wifi and cellularGravatar Muxi Yan2016-10-21
|
* Break retain cycle and fix bugGravatar Muxi Yan2016-10-21
|
* Flush host when network connectivity changesGravatar Muxi Yan2016-10-20
|
* Name revisionGravatar Muxi Yan2016-10-02
|
* ObjC API updateGravatar Muxi Yan2016-09-30
|
* Use NS_OPTIONS flags for ObjC APIGravatar Muxi Yan2016-09-28
|
* Allow more general flags to be passed to ObjC APIGravatar Muxi Yan2016-09-28
|
* Update grpc objc API for support of PUT methodGravatar Muxi Yan2016-09-27
|
* Merge branch 'v1.0.x' of https://github.com/grpc/grpc into manual-upmergeGravatar Nicolas "Pixel" Noble2016-09-08
|\
| * Let tracing be enabled before starting an RPCGravatar Jorge Canizales2016-08-24
| | | | | | by calling grpc_init on [GRPCCall load], instead of lazily.
* | Merge pull request #7245 from muxi/fix-7181Gravatar makdharma2016-07-18
|\ \ | |/ |/| Fix of Issue #7181 documentation and Objective C code
| * Remove redundant commentGravatar Muxi Yan2016-07-14
| |
| * Update error message when client does not enough memory to hold server responseGravatar Muxi Yan2016-07-07
| |
| * Fix error code when client run out of memory in Objective C code baseGravatar Muxi Yan2016-07-06
| | | | | | | | Update Status Codes documentation
* | Merge master into merge-0.14-into-masterGravatar Jorge Canizales2016-06-30
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: - gRPC.podspec - Only had non-trivial changes in the core file list, which will need to be regenerated (in gRPC-Core.podspec). - src/objective-c/BoringSSL.podspec - Had trivial conflicts in the version. - src/objective-c/examples/RemoteTestClient/RemoteTest.podspec - Trivial conflicts in quoting. - src/objective-c/examples/Sample/Sample.xcodeproj/project.pbxproj and src/objective-c/examples/SwiftSample/SwiftSample.xcodeproj/project.pbxproj - The master version is used, pending testing. The 0.14 version had emoji and some unneeded entries. - src/objective-c/tests/Podfile - Added CronetFramework pod, and warning silencing from master. - templates/gRPC.podspec.template - Deleted. - third_party/protobuf - Using master commit, but need to verify if it works for frameworks.
* | Restore fix undid by https://github.com/grpc/grpc/pull/5893Gravatar Jorge Canizales2016-06-28
| | | | | | That PR wasn’t tested nor reviewed adequately.
* | Restore fix undid by https://github.com/grpc/grpc/pull/5893Gravatar Jorge Canizales2016-06-24
| | | | | | That PR wasn’t tested nor reviewed adecuately.
| * Fixes #2868Gravatar Makarand Dharmapurikar2016-06-14
|/
* Add state transitions to GRPCCallGravatar Jorge Canizales2016-04-30
|
* Update copyrightsGravatar Craig Tiller2016-03-31
|
* Fixing copyrights.Gravatar Nicolas "Pixel" Noble2016-03-21
|
* For GRPCOperation's, ensure finish _handler can only be called once, and ↵Gravatar Nicolas "Pixel" Noble2016-03-21
| | | | | | release it when called, so weak ptrs needn't be used with it, and the call won't be released until the finish handler is called. When the connectivityMonitor determines the connection has been lost, pull the host disconnect call. Creates an unreliable connection when connectivity is restored. Calling finishWithError: is sufficient.
* Add monitoring of connectivityGravatar Jorge Canizales2016-03-11
| | | | | | | Move C-layer call creation into GRPCChannel, so that it always acts on a non-destroyed channel. Listen for connectivity in the GRPCCall, and destroy the channel.
* Makes GRPCRequestHeaders a NSMutableDictionaryGravatar Jorge Canizales2015-12-03
| | | | | | | TODO: - Documentation - Make public - Check I’ve implemented all NSMutDict required methods
* Make request headers a @property property.Gravatar Jorge Canizales2015-09-03
|
* Publish GRPCRequestHeaders as a protocolGravatar Jorge Canizales2015-09-02
| | | | | So we can make the property a dictionary later, by just extending NSMutableDictionary to conform to the protocol.
* Remove -[asDictionary]Gravatar Jorge Canizales2015-09-02
|
* Make GRPCRequestHeaders public and import from GRPCCallGravatar Jorge Canizales2015-09-02
|
* Added class for setting request headers on a callGravatar murgatroid992015-09-01
|
* Put both headers and trailers in the error.userInfoGravatar Jorge Canizales2015-08-12
|
* Turn allResponseMetadata into *Headers and *TrailersGravatar Jorge Canizales2015-08-12
|
* More requestMetadata -> requestHeaders renamingGravatar Jorge Canizales2015-08-12
|
* Rename responseMetadata -> allResponseMetadataGravatar Jorge Canizales2015-08-12
|
* Rename requestMetadata -> requestHeadersGravatar Jorge Canizales2015-08-12
|
* Don’t retain self here!Gravatar Jorge Canizales2015-08-08
|
* Don’t set the request writer to nil, as @synchr(nil) is undefined behavior.Gravatar Jorge Canizales2015-08-08
| | | | Also clarify in GRXWriter.h that the writeable is released whenever the writer finishes.
* Rename super-confusing ivar _self -> _retainSelfGravatar Jorge Canizales2015-08-08
|
* Eliminate race in GRPCCall’s operation of the requests writerGravatar Jorge Canizales2015-08-07
|
* Return nil instead of assert when the test certs can’t be readGravatar Jorge Canizales2015-08-05
|
* Move _channel from GRPCCall into GRPCWrappedCallGravatar Jorge Canizales2015-08-01
|
* Unused ivar in GRPCCall.mGravatar Jorge Canizales2015-08-01
|
* grpc_init() is already called in GRPCWrappedCallGravatar Jorge Canizales2015-08-01
|
* GRPCCall.m formatting.Gravatar Jorge Canizales2015-08-01
|
* Make the call retain cycle explicit and encapsulated within GRPCCall.mGravatar Jorge Canizales2015-07-18
|
* ConcurrentWriteable: NSData *message -> id valueGravatar Jorge Canizales2015-07-18
|