Home
last modified time | relevance | path

Searched refs:FlatbuffersCodec (Results 1 – 4 of 4) sorted by relevance

/third_party/flatbuffers/go/
Dgrpc.go9 type FlatbuffersCodec struct{} struct
12 func (FlatbuffersCodec) Marshal(v interface{}) ([]byte, error) { argument
17 func (FlatbuffersCodec) Unmarshal(data []byte, v interface{}) error { argument
23 func (FlatbuffersCodec) String() string { argument
32 func (FlatbuffersCodec) Name() string { argument
/third_party/flatbuffers/grpc/tests/
Dgo_test.go80 encoding.RegisterCodec(flatbuffers.FlatbuffersCodec{})
88 conn, err := grpc.Dial(addr, grpc.WithInsecure(), grpc.WithCodec(flatbuffers.FlatbuffersCodec{}))
/third_party/flatbuffers/grpc/examples/go/greeter/server/
Dmain.go72 encoding.RegisterCodec(flatbuffers.FlatbuffersCodec{})
/third_party/flatbuffers/grpc/examples/go/greeter/client/
Dmain.go66 …Sprintf("localhost:%d", 3000), grpc.WithInsecure(), grpc.WithCodec(flatbuffers.FlatbuffersCodec{}))