Package tensorflow.serving
Class ModelServiceGrpc.ModelServiceStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractAsyncStub<ModelServiceGrpc.ModelServiceStub>
tensorflow.serving.ModelServiceGrpc.ModelServiceStub
- Enclosing class:
- ModelServiceGrpc
public static final class ModelServiceGrpc.ModelServiceStub extends io.grpc.stub.AbstractAsyncStub<ModelServiceGrpc.ModelServiceStub>
ModelService provides methods to query and update the state of the server, e.g. which models/versions are being served.
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description protected ModelServiceGrpc.ModelServiceStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)voidgetModelStatus(GetModelStatus.GetModelStatusRequest request, io.grpc.stub.StreamObserver<GetModelStatus.GetModelStatusResponse> responseObserver)Gets status of model.voidhandleReloadConfigRequest(ModelManagement.ReloadConfigRequest request, io.grpc.stub.StreamObserver<ModelManagement.ReloadConfigResponse> responseObserver)Reloads the set of served models.
-
Method Details
-
build
protected ModelServiceGrpc.ModelServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)- Specified by:
buildin classio.grpc.stub.AbstractStub<ModelServiceGrpc.ModelServiceStub>
-
getModelStatus
public void getModelStatus(GetModelStatus.GetModelStatusRequest request, io.grpc.stub.StreamObserver<GetModelStatus.GetModelStatusResponse> responseObserver)Gets status of model. If the ModelSpec in the request does not specify version, information about all versions of the model will be returned. If the ModelSpec in the request does specify a version, the status of only that version will be returned.
-
handleReloadConfigRequest
public void handleReloadConfigRequest(ModelManagement.ReloadConfigRequest request, io.grpc.stub.StreamObserver<ModelManagement.ReloadConfigResponse> responseObserver)Reloads the set of served models. The new config supersedes the old one, so if a model is omitted from the new config it will be unloaded and no longer served.
-