Classes | |
struct | ServerStartedCondition |
Functions | |
void | RunServer (const std::shared_ptr< ServerCredentials > &creds) |
void | RunServer (const std::shared_ptr< ServerCredentials > &creds, const int port, ServerStartedCondition *server_started_condition, std::unique_ptr< std::vector< std::unique_ptr< grpc::ServerBuilderOption >>> server_options) |
void | RunServer (const std::shared_ptr< ServerCredentials > &creds, int port, ServerStartedCondition *server_started_condition) |
void | RunServer (const std::shared_ptr< ServerCredentials > &creds, std::unique_ptr< std::vector< std::unique_ptr< ServerBuilderOption >>> server_options) |
Variables | |
gpr_atm | g_got_sigint |
void grpc::testing::interop::RunServer | ( | const std::shared_ptr< ServerCredentials > & | creds | ) |
Run gRPC interop server using port FLAGS_port.
creds | The credentials associated with the server. |
Definition at line 320 of file interop_server.cc.
void grpc::testing::interop::RunServer | ( | const std::shared_ptr< ServerCredentials > & | creds, |
const int | port, | ||
ServerStartedCondition * | server_started_condition, | ||
std::unique_ptr< std::vector< std::unique_ptr< grpc::ServerBuilderOption >>> | server_options | ||
) |
Run gRPC interop server.
creds | The credentials associated with the server. |
port | Port to use for the server. |
server_options | List of options to set when building the server. |
server_started_condition | (optional) Struct holding mutex, condition |
void grpc::testing::interop::RunServer | ( | const std::shared_ptr< ServerCredentials > & | creds, |
int | port, | ||
ServerStartedCondition * | server_started_condition | ||
) |
Run gRPC interop server.
creds | The credentials associated with the server. |
port | Port to use for the server. |
server_started_condition | (optional) Struct holding mutex, condition variable, and condition used to notify when the server has started. |
Definition at line 333 of file interop_server.cc.
void grpc::testing::interop::RunServer | ( | const std::shared_ptr< ServerCredentials > & | creds, |
std::unique_ptr< std::vector< std::unique_ptr< ServerBuilderOption >>> | server_options | ||
) |
Run gRPC interop server.
creds | The credentials associated with the server. |
server_options | List of options to set when building the server. |
Definition at line 325 of file interop_server.cc.
gpr_atm grpc::testing::interop::g_got_sigint |
Definition at line 25 of file interop_server_bootstrap.cc.