Coder Social home page Coder Social logo

Comments (7)

dsymonds avatar dsymonds commented on July 19, 2024

In this sense, a "server" is something that implements a "service" or a "server interface". It's a little unfortunate that the grpc.Server type has the same name, but it's not a big deal once you get used to it.

from grpc-go.

acasajus avatar acasajus commented on July 19, 2024

Now that is alpha It could be fixed to keep consistency with the rest of the language implementations :)

from grpc-go.

GeertJohan avatar GeertJohan commented on July 19, 2024

I agree with @dsymonds that "Server" could be a good name for something that implements the server side of a service. But the name is indeed confusing with grpc.Server.
The grpc.Server can serve multiple server's that implement the service's server interface.. ๐Ÿ˜œ

So how about adopting a new word? For instance Handler?

A Handler interface describes a Service and is implemented by the user.
e.g.:

// Generated from the proto service definition
type FoobarHandler interface {
    Foobar(int) (int, error) // rpc method
    OtherThing(int
}

// Registration linker
RegisterFoobarHandler(*grpc.Server, FoobarHandler)

Now the grpc.Server can serve multiple Handlers which implement the service's Handler interface.

The name Handler is already being used by grpc, but afaik mostly internally.
For instance, this is generated code:

var _Foobar_serviceDesc = grpc.ServiceDesc{
    ServiceName: "foobar.Foobar",
    HandlerType: (*FoobarServer)(nil),
    Methods: []grpc.MethodDesc{
        {
            MethodName: "Info",
            Handler:    _Foobar_Info_Handler,
        },
    },
    Streams: []grpc.StreamDesc{
        {
            StreamName:    "Subscribe",
            Handler:       _Foobar_Subscribe_Handler,
            ServerStreams: true,
        },
    },
}

We can see Handler is already being used as a field to link service methods, but it also refers to the Server itself (HandlerType).

I don't think that the ServiceDesc, MethodDesc and StreamDesc's are to be modified by the user, so the Handler word might be a good option here.

from grpc-go.

acasajus avatar acasajus commented on July 19, 2024

I'd prefer Service because it describes a Service instead of: A Handler interface describes a Service and is implemented by the user.

But I'm ok which Handler since it's different from Server as you say.

from grpc-go.

iamqizhao avatar iamqizhao commented on July 19, 2024

I do not like Handler since it is already used in grpc meaning different thing. I like "Service" and am also okay with "Server". I leave the decision to @dsymonds who is the owner of grpc codegen and protobuf in Go.

from grpc-go.

dsymonds avatar dsymonds commented on July 19, 2024

I've thought about it, and I think the current state is fine. Let's close this and move onto more important issues.

from grpc-go.

GeertJohan avatar GeertJohan commented on July 19, 2024

๐Ÿ‘

from grpc-go.

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.