grpc-swift icon indicating copy to clipboard operation
grpc-swift copied to clipboard

The Swift language implementation of gRPC.

Results 113 grpc-swift issues
Sort by recently updated
recently updated
newest added

### What are you trying to achieve? When user's device change network(either change network interface or switch from one Wifi to another), the running gPRC client would keep sending request...

question

### What are you trying to achieve? The api I have been working with recently upgraded and I am required to send credentials securely now, not over plain text. I...

question

### Is your feature request related to a problem? Please describe it. Consider this API: I CMD+clicked my way into the function actually doing the throwing and it seems too...

enhancement

### What are you trying to achieve? To install the GRPC library into my current project which also uses Firebase. ### What have you tried so far? - Installed both...

question

### Describe the bug 1. I am using the following: 1.1. iOS (Swift) 1.2. Cocoapods ``` - gRPC-Swift (1.7.3): - CGRPCZlib (= 1.7.3) - Logging (< 2.0.0, >= 1.4.0) -...

bug

``` let (host, port) = address.convertAddress() let useTLS = (port == 443) let group = MultiThreadedEventLoopGroup(numberOfThreads: 1) let builder = useTLS ? ClientConnection.usingTLSBackedByNIOSSL(on: group) : ClientConnection.insecure(group: group) let channel =...

question

Many service providers need other resources to provide their service. Therefore I'd expect to have lifecycle hooks for at least when the service provider gets _started_ and _stopped_. Those would...

enhancement

### Question Checklist - [x] Updated grpc-swift to the latest version im using version 1.0.0-alph.8 - [ done] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [done ] I read [README](https://github.com/grpc/grpc-swift/blob/master/README.md) -...

question

Hello. We are using grpc in project, which has App Clip,so that’s why we care about the size of the application (there is limit of 10 mb of uncompressed app)....

question

### Describe the bug While investigating how grpc-swift handles different scenarios while client streams are open (like backgrounding the app, or during a poor/dropped network connection), I encountered an issue...

bug