From 6dd10f6d98663e46c0c37cb43a3783d300829416 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Dec 2023 09:00:35 +0000 Subject: [PATCH] Re-generate mdsnippets --- example/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/example/README.md b/example/README.md index 1d8121a7..e9558b19 100644 --- a/example/README.md +++ b/example/README.md @@ -13,7 +13,7 @@ Click on `snippet source` to jump to the code of an individual example. // A simple client-streaming request with coroutines. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor @@ -23,7 +23,7 @@ Click on `snippet source` to jump to the code of an individual example. // A simple server-streaming request with coroutines. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor @@ -33,7 +33,7 @@ Click on `snippet source` to jump to the code of an individual example. // A bidirectional-streaming request that simply sends the response from the server back to it. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor @@ -45,7 +45,7 @@ Click on `snippet source` to jump to the code of an individual example. // For unary RPCs, `grpc::ClientContext::set_deadline` should be preferred. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### Multi-threaded @@ -57,7 +57,7 @@ Click on `snippet source` to jump to the code of an individual example. // Multi-threaded client performing 20 unary requests // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### Generic @@ -92,7 +92,7 @@ Click on `snippet source` to jump to the code of an individual example. // Example showing how to run an io_context and a GrpcContext on the same thread for gRPC clients. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### io_uring file transfer @@ -104,7 +104,7 @@ Click on `snippet source` to jump to the code of an individual example. // Example showing how to transfer files over a streaming RPC. Stack buffers are used to customize memory allocation. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ## Asio server-side @@ -118,7 +118,7 @@ Click on `snippet source` to jump to the code of an individual example. // Server-side hello world which handles exactly one request from the client before shutting down. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### Streaming RPCs @@ -130,7 +130,7 @@ Click on `snippet source` to jump to the code of an individual example. // A simple client-streaming rpc handler using C++20 coroutines. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor @@ -140,7 +140,7 @@ Click on `snippet source` to jump to the code of an individual example. // A simple server-streaming rpc handler using C++20 coroutines. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor @@ -151,7 +151,7 @@ Click on `snippet source` to jump to the code of an individual example. // back to the client. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### Multi-threaded @@ -163,7 +163,7 @@ Click on `snippet source` to jump to the code of an individual example. // Multi-threaded server performing 20 unary requests using callback API // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### Generic @@ -200,7 +200,7 @@ Click on `snippet source` to jump to the code of an individual example. // creating a separate thread for the GrpcContext might be undesirable due to added synchronization complexity. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ### io_uring file transfer @@ -212,7 +212,7 @@ Click on `snippet source` to jump to the code of an individual example. // Example showing how to transfer files over a streaming RPC. Stack buffers are used to customize memory allocation. // --------------------------------------------------- ``` -snippet source | anchor +snippet source | anchor ## Libunifex