当前位置: 首页 > 工具软件 > sofa-pbrpc > 使用案例 >

sofa-pbrpc源码分析之RpcServerOptions

谷涵容
2023-12-01

RpcServerOptions

  • RpcServerOptions定义了RpcServer的服务器选项, 包括以下内容:
    – 工作线程数目
    – 空闲连接的最大持续时间
    – 在一个连接中的最大的pending大小
    – 最大的入口、出口带宽
    – 工作线程启动、销毁前执行的函数

RpcServerOptions定义

struct RpcServerOptions
{
    int work_thread_num;
    int keep_alive_time;
    int max_pending_buffer_size;
    int max_through_in;
    int max_through_out;
    bool disable_builtin_services;
    bool disable_list_service;
    ExtClosure<bool()>* work_thread_init_func;
    ExtClosure<bool()>* work_thread_dest_func;
    RpcServerOptions()
        : work_thread_num(8)
        , keep_alive_time(-1)
        , max_pending_buffer_size(2)
        , max_throughput_in(-1)
        , max_throughput_out(-1)
        , disable_builtin_services(false)
        , disable_list_service(false)
        , work_thread_init_func(NULL)
        , work_thread_dest_func(NULL)
    {}
};
 类似资料: