Goby3  3.1.5a
2024.05.23
test.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 import "dccl/option_extensions.proto";
3 import "goby/middleware/protobuf/app_config.proto";
4 import "goby/zeromq/protobuf/interprocess_config.proto";
5 
6 package goby.test.zeromq.protobuf;
7 
8 message TestConfig
9 {
10  optional goby.middleware.protobuf.AppConfig app = 1;
11  optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
12 
13  optional int32 num_messages = 3 [default = 10000];
14  optional int32 num_rx_threads = 4 [default = 10];
15  optional int32 num_tx_threads = 5 [default = 2];
16 }
17 
18 message Widget
19 {
20  optional int32 b = 1;
21 }