diff --git a/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.h b/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.h index ba9645e814..cfdfb2f34b 100644 --- a/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.h +++ b/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.h @@ -129,7 +129,7 @@ private: //================================================================================================== // -// Templated bi-directional *streaming* gRPC-callback calling service implementation callbacks +// Templated server *streaming* gRPC-callback calling service implementation callbacks // // The streaming callback needs a state handler for setting up and maintaining order. // @@ -137,8 +137,6 @@ private: // 1. Default Constructor // 2. grpc::Status init(const grpc::Message* request) // -//================================================================================================== - //================================================================================================== template class RiaGrpcStreamCallback : public RiaGrpcRequestCallback @@ -165,7 +163,6 @@ private: ResponseWriterT m_responder; MethodImplT m_methodImpl; MethodRequestT m_methodRequest; - size_t m_dataCount; // This is used to keep track of progress. Only one item is sent for each invocation. std::unique_ptr m_stateHandler; }; diff --git a/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.inl b/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.inl index fd5f3be865..9a41879e62 100644 --- a/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.inl +++ b/ApplicationCode/GrpcInterface/RiaGrpcCallbacks.inl @@ -161,7 +161,6 @@ RiaGrpcStreamCallback::RiaGrpcStreamC , m_responder(&m_context) , m_methodImpl(methodImpl) , m_methodRequest(methodRequest) - , m_dataCount(0u) , m_stateHandler(stateHandler) { }