grpc-swift
grpc-swift copied to clipboard
The Swift language implementation of gRPC.
Hi, I would like to know how can I setup the following options (available in your lib **v0.x**) in the lib **v1.0.0-alpha.XX**, see `Channel.Attributes`: * maxReceiveMessageLength * maxSendMessageLength * maxConcurrentStreams...
### What are you trying to achieve? This may be a very specific issue, but some of the users of our iOS app complain that after they have app in...
### Is your feature request related to a problem? Please describe it. Currently, there is no way to propagate backpressure from a client-streaming RPC. For example: ``` service TestService {...
### Is your feature request related to a problem? Please describe it. Users have hit a number of bugs caused by the codegen. We inherited the codegen from the old...
### Is your feature request related to a problem? Please describe it. At the moment a client a client attempts to establish a connection it may be waiting for connectivity...
### Is your feature request related to a problem? Please describe it. Everytime a new release is created, it can take hours before the associated podspec is published to Cocoapods....
# Lower Level API gRPC Swift would benefit from having a lower-level API where users have finer grained control over the RPC such as manual flow control and where code...
### Question Checklist - [x] Updated grpc-swift to the latest version - [x] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [x] I read [README](https://github.com/grpc/grpc-swift/blob/master/README.md) - [x] I searched for [existing GitHub...
In the `nio` version, protobuf decoding is currently always inline on the NIO EventLoop threads. This might become a problem in the future and the only mitigation might be to...
The gRPC C core currently supports [multiple transports](https://grpc.github.io/grpc/core/md_doc_core_transport_explainer.html) including an [in-process transport](https://github.com/grpc/grpc/tree/master/src/core/ext/transport/inproc). According to the gRPC team, this is "quite popular for hermetic testing" and is being added to other...