mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
e4a28e9e4b
* remove parent ptr from unregistered calls -- unneeded * begin unregistered high level server loop * undo changes to highlevel server, add mkConfig for unregistered server * move call CQ create/destroy into call create/destroy * async normal call function * preliminary unregistered server loop for non-streaming methods * working unregistered highlevel example * loop counters for benchmarking * changes for benchmarking, add ruby example server for benchmarking * async version of withCall, refactor unregistered server loop to handle all method types * unregistered client streaming * add remaining streaming modes * unregistered server streaming test * unregistered streaming tests * add error logging * fix bug in add example * remove old TODOs * fix bug: don't assume slices are null-terminated * add TODO re: unregistered client streaming functions
23 lines
741 B
Ruby
23 lines
741 B
Ruby
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: echo.proto
|
|
|
|
require 'google/protobuf'
|
|
|
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
add_message "echo.EchoRequest" do
|
|
optional :message, :string, 1
|
|
end
|
|
add_message "echo.AddRequest" do
|
|
optional :addX, :fixed32, 1
|
|
optional :addY, :fixed32, 2
|
|
end
|
|
add_message "echo.AddResponse" do
|
|
optional :answer, :fixed32, 1
|
|
end
|
|
end
|
|
|
|
module Echo
|
|
EchoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("echo.EchoRequest").msgclass
|
|
AddRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("echo.AddRequest").msgclass
|
|
AddResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("echo.AddResponse").msgclass
|
|
end
|