Updating Java code in README.md

This commit is contained in:
nmittler 2015-02-26 07:21:15 -08:00
parent dbae29ed0f
commit 8b3d4231c8
1 changed files with 4 additions and 7 deletions

View File

@ -223,19 +223,16 @@ has all the protocol buffer code to populate, serialize, and retrieve our
```java ```java
public static interface Greeter { public static interface Greeter {
public void sayHello(io.grpc.examples.Helloworld.HelloRequest request,
public void SayHello(ex.grpc.Helloworld.HelloRequest request, io.grpc.stub.StreamObserver<io.grpc.examples.Helloworld.HelloReply> responseObserver);
com.google.net.stubby.stub.StreamObserver<ex.grpc.Helloworld.HelloReply>
responseObserver);
} }
``` ```
- _stub_ classes that clients can use to talk to a `Greeter` server. As you can see, they also implement the `Greeter` interface. - _stub_ classes that clients can use to talk to a `Greeter` server. As you can see, they also implement the `Greeter` interface.
```java ```java
public static class GreeterStub extends public static class GreeterStub extends
com.google.net.stubby.stub.AbstractStub<GreeterStub, io.grpc.stub.AbstractStub<GreeterStub, GreeterServiceDescriptor>
GreeterServiceDescriptor>
implements Greeter { implements Greeter {
... ...
} }