Hey everyone,
I'm building an API with GRPC which currently looks like this:
```
service MyService {
  rpc sendMessageStream(stream MyRequest) returns(MyResult){};
}
```
If the client invokes the GRPC API but never invokes the onCompleted 
method, will it occupy server-side memory resources?  

The server is implemented in Java, and the client may be python, Java or 
C++.

The dependency versions introduced by the server are as follows:

<dependency>
    <groupId>net.devh</groupId>
    <artifactId>grpc-spring-boot-starter</artifactId>
    <version>2.13.1.RELEASE</version>
</dependency>

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/d33a16d2-cd10-4421-93ee-377159b304dbn%40googlegroups.com.

Reply via email to