#include <server.h>
Public Member Functions | |
virtual void | AddPort (Server *, const std::string &, ServerCredentials *, int) |
Called after a server port is added. More... | |
virtual void | PostSynchronousRequest (ServerContext *context)=0 |
Called after application callback for each synchronous server request. More... | |
virtual void | PreServerStart (Server *) |
Called before server is started. More... | |
virtual void | PreSynchronousRequest (ServerContext *context)=0 |
Called before application callback for each synchronous server request. More... | |
virtual void | UpdateArguments (ChannelArguments *) |
Called before server is created. More... | |
virtual | ~GlobalCallbacks () |
Global callbacks are a set of hooks that are called when server events occur. SetGlobalCallbacks method is used to register the hooks with gRPC. Note that the GlobalCallbacks instance will be shared among all Server instances in an application and can be set exactly once per application.
Definition at line 75 of file include/grpcpp/server.h.
|
inlinevirtual |
Definition at line 77 of file include/grpcpp/server.h.
|
inlinevirtual |
Called after a server port is added.
Definition at line 87 of file include/grpcpp/server.h.
|
pure virtual |
Called after application callback for each synchronous server request.
|
inlinevirtual |
Called before server is started.
Definition at line 85 of file include/grpcpp/server.h.
|
pure virtual |
Called before application callback for each synchronous server request.
|
inlinevirtual |
Called before server is created.
Definition at line 79 of file include/grpcpp/server.h.