Home
last modified time | relevance | path

Searched refs:GenericService (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc/src/ruby/spec/generic/
Dservice_spec.rb41 GenericService = GRPC::GenericService constant
51 describe GenericService do describe
54 expect(GenericService.underscore('AnRPC')).to eq('an_rpc')
55 expect(GenericService.underscore('AMethod')).to eq('a_method')
56 expect(GenericService.underscore('PrintHTML')).to eq('print_html')
57 expect(GenericService.underscore('SeeHTMLBooks')).to eq('see_html_books')
64 include GenericService
71 include GenericService
81 include GenericService
92 include GenericService
[all …]
/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dservice.rb24 module GenericService module
98 define_method(GenericService.underscore(name.to_s).to_sym) do |_, _|
163 mth_name = GenericService.underscore(name.to_s).to_sym
Drpc_server.rb466 unless cls.include?(GenericService)
481 rpc_name = GenericService.underscore(name.to_s).to_sym
/external/grpc-grpc/examples/ruby/without_protobuf/
DREADME.md6 This is mainly intended to show basic usage of the GRPC::GenericService module
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DGenericService.cs38 public static class GenericService class
DServerRunners.cs74 service = GenericService.BindHandler(genericService.StreamingCall); in CreateStarted()
DClientRunners.cs284 …var callDetails = new CallInvocationDetails<byte[], byte[]>(channel, GenericService.StreamingCallM… in RunGenericStreamingAsync()