File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -330,8 +330,8 @@ syntax = "proto3";
330330package hello ;
331331
332332service HelloService {
333- rpc BidiHello (stream HelloRequest ) returns (stream HelloResponse )
334- rpc LotsOfGreetings (stream HelloRequest ) returns (HelloResponse )
333+ rpc BidiHello (stream HelloRequest ) returns (stream HelloResponse );
334+ rpc LotsOfGreetings (stream HelloRequest ) returns (HelloResponse );
335335}
336336
337337message HelloRequest {
@@ -392,7 +392,7 @@ According to the service definition (in the `.proto` file), the `BidiHello` meth
392392
393393``` typescript
394394const helloService = this .client .getService <HelloService >(' HelloService' );
395- const helloRequest$ = new ReplySubject <HelloRequest >();
395+ const helloRequest$ = new ReplaySubject <HelloRequest >();
396396
397397helloRequest$ .next ({ greeting: ' Hello (1)!' });
398398helloRequest$ .next ({ greeting: ' Hello (2)!' });
You can’t perform that action at this time.
0 commit comments