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";
330
330
package hello ;
331
331
332
332
service 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 );
335
335
}
336
336
337
337
message HelloRequest {
@@ -392,7 +392,7 @@ According to the service definition (in the `.proto` file), the `BidiHello` meth
392
392
393
393
``` typescript
394
394
const helloService = this .client .getService <HelloService >(' HelloService' );
395
- const helloRequest$ = new ReplySubject <HelloRequest >();
395
+ const helloRequest$ = new ReplaySubject <HelloRequest >();
396
396
397
397
helloRequest$ .next ({ greeting: ' Hello (1)!' });
398
398
helloRequest$ .next ({ greeting: ' Hello (2)!' });
You can’t perform that action at this time.
0 commit comments