tensorrt-laboratory icon indicating copy to clipboard operation
tensorrt-laboratory copied to clipboard

Add IServer Interface

Open ryanolson opened this issue 7 years ago • 0 comments

Create an IServer interface which is a friend to the IExecutor interface.

This will allow us to protect the currently public methods and only expose those methods Server objects.

    virtual void Initialize(::grpc::ServerBuilder &) = 0;
    virtual void Run() = 0;

ryanolson avatar Oct 18 '18 10:10 ryanolson