Home | History | Annotate | Download | only in grpc

Lines Matching refs:status

20 import io.grpc.Status;
24 * status response, subclasses will handle request specific responses.
27 @Nullable public final Status status;
30 this.status = null;
33 TranscriptionResponse(Status status) {
34 Assert.checkArgument(status != null);
35 this.status = status;
39 if (status != null) {
40 return status.getCode() == Status.Code.UNAVAILABLE;
47 if (status != null) {
48 return status.getCode() != Status.Code.OK && status.getCode() != Status.Code.UNAVAILABLE;
56 return "status: " + status;