Coder Social home page Coder Social logo

Comments (4)

Tradias avatar Tradias commented on June 14, 2024

In your proto file you would typically define a Service with multiple endpoints, like in the example. Then for each GrpcContext you register your request handler for each endpoint:

void register_handlers(agrpc::GrpcContext& grpc_context, example::v1::Example::AsyncService& service)
{
    auto register_handler = [&](auto request_function, auto handler)
    {
        agrpc::repeatedly_request(request_function, service, asio::bind_executor(grpc_context, handler));
    };

    register_handler(&example::v1::Example::AsyncService::RequestUnary,
                     [&](grpc::ServerContext&, example::v1::Request&,
                         grpc::ServerAsyncResponseWriter<example::v1::Response>&) -> asio::awaitable<void>
                     {
                         co_return;
                     });
    register_handler(&example::v1::Example::AsyncService::RequestServerStreaming,
                     [&](grpc::ServerContext&, example::v1::Request&,
                         grpc::ServerAsyncWriter<example::v1::Response>&) -> asio::awaitable<void>
                     {
                         co_return;
                     });
    register_handler(&example::v1::Example::AsyncService::RequestClientStreaming,
                     [&](grpc::ServerContext&,
                         grpc::ServerAsyncReader<example::v1::Response, example::v1::Request>&) -> asio::awaitable<void>
                     {
                         co_return;
                     });
    register_handler(&example::v1::Example::AsyncService::RequestBidirectionalStreaming,
                     [&](grpc::ServerContext&,
                         grpc::ServerAsyncReaderWriter<example::v1::Response, example::v1::Request>&) -> asio::awaitable<void>
                     {
                         co_return;
                     });
}

I hope that is what you were asking.

Regarding the generic server, I personally haven't had a use case for it but I know that someone experimented with haskell bindings for grpc and made use of it.

from asio-grpc.

criatura2 avatar criatura2 commented on June 14, 2024

Ok, thanks. I suppose this example also work for when each service has a different message type?

Also, are you implying I need one grpc-context and threfore one thread for each service? In the generic example I am using only one grpc-context and threfore only one thread.

from asio-grpc.

Tradias avatar Tradias commented on June 14, 2024

Correct, it also works for different message types. Interesting question, the documentation actually doesn't mention that and the examples use the same type for simplicity. I guess I could add an example for the official route guide.

You can have as many or few services and GprcContexts as you like. Have one context handle all services or multiple contexts handle multiple services, everything's possible.

from asio-grpc.

criatura2 avatar criatura2 commented on June 14, 2024

Thanks, this is solved now.

from asio-grpc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.