本文整理匯總了Java中io.grpc.Status.Code方法的典型用法代碼示例。如果您正苦於以下問題:Java Status.Code方法的具體用法?Java Status.Code怎麽用?Java Status.Code使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類io.grpc.Status
的用法示例。
在下文中一共展示了Status.Code方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: assertGetLoggersReturnsCode
import io.grpc.Status; //導入方法依賴的package包/類
private static void assertGetLoggersReturnsCode(LoggersServiceGrpc.LoggersServiceBlockingStub stub, Status.Code code) {
try {
stub.getLoggers(Empty.getDefaultInstance()).forEachRemaining(l -> {});
failBecauseExceptionWasNotThrown(StatusRuntimeException.class);
} catch (StatusRuntimeException e) {
assertThat(e.getStatus().getCode()).isEqualTo(code);
}
}
示例2: hasStatusCode
import io.grpc.Status; //導入方法依賴的package包/類
/**
* Evaluates a throwable to determine if it has a gRPC status, and then if so, evaluates the throwable's
* status code.
*
* @param t A throwable to evaluate
* @param code A {@code Status.Code} to look for
* @return {@code true} if {@code t} is a {@code StatusException} or a {@code StatusRuntimeException} with
* {@code Status.Code} equal to {@code code}
*/
public static boolean hasStatusCode(Throwable t, Status.Code code) {
if (!hasStatus(t)) {
return false;
} else {
return doWithStatus(t, (status, metadata) -> status.getCode() == code);
}
}