From 6428b4e2f702919df3f5dda8137131088aa34126 Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Mon, 17 Dec 2018 15:33:48 +0100 Subject: [PATCH] Create README.md (#144) --- example/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 example/README.md diff --git a/example/README.md b/example/README.md new file mode 100644 index 0000000..963d131 --- /dev/null +++ b/example/README.md @@ -0,0 +1,15 @@ +Four code examples are available: + +1. [`/helloworld/`](https://github.com/grpc/grpc-dart/tree/master/example/helloworld): + A demonstration of using the Dart gRPC library to perform unary RPs. + +1. [`/googleapis/`](https://github.com/grpc/grpc-dart/tree/master/example/googleapis): + A demonstration of using the Dart gRPC library to communicate with Google APIs. + +1. [`/metadata/`](https://github.com/grpc/grpc-dart/tree/master/example/metadata): + A demonstration of how to handle custom metadata, cancellation, and timeouts in Dart gRPC. + +1. [`/route_guide/`](https://github.com/grpc/grpc-dart/tree/master/example/route_guide): + A demonstration of how to perform unary, client streaming, server streaming and full duplex RPCs. + +For a complete, step-wise working example, see the [Dart gRPC Quickstart](https://grpc.io/docs/quickstart/dart.html).