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