當前位置: 首頁>>代碼示例>>Java>>正文


Java Status.fromThrowable方法代碼示例

本文整理匯總了Java中io.grpc.Status.fromThrowable方法的典型用法代碼示例。如果您正苦於以下問題:Java Status.fromThrowable方法的具體用法?Java Status.fromThrowable怎麽用?Java Status.fromThrowable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在io.grpc.Status的用法示例。


在下文中一共展示了Status.fromThrowable方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: onError

import io.grpc.Status; //導入方法依賴的package包/類
/**
 * Receives a terminating error from the stream.
 * <p>
 * <p>May only be called once and if called it must be the last method called. In particular if an
 * exception is thrown by an implementation of {@code onError} no further calls to any method are
 * allowed.
 * <p>
 * <p>{@code t} should be a {@link StatusException} or {@link
 * StatusRuntimeException}, but other {@code Throwable} types are possible. Callers should
 * generally convert from a {@link Status} via {@link Status#asException()} or
 * {@link Status#asRuntimeException()}. Implementations should generally convert to a
 * {@code Status} via {@link Status#fromThrowable(Throwable)}.
 *
 * @param throwable the error occurred on the stream
 */
@Override
public void onError(final Throwable throwable) {
    if (DEBUG) {
        MyLog.w(CLS_NAME, "onError");
        throwable.printStackTrace();
        final Status status = Status.fromThrowable(throwable);
        MyLog.w(CLS_NAME, "onError: " + status.toString());
    }

    if (doError.get()) {
        doError.set(false);
        stopListening();
        listener.onError(SpeechRecognizer.ERROR_NETWORK);
    }
}
 
開發者ID:brandall76,項目名稱:Saiy-PS,代碼行數:31,代碼來源:RecognitionGoogleCloud.java

示例2: rethrowNotRecoverableException

import io.grpc.Status; //導入方法依賴的package包/類
private void rethrowNotRecoverableException(Exception e) {
  if (e instanceof GrpcRegionStaleException) {
    throw (GrpcRegionStaleException)e;
  }
  Status status = Status.fromThrowable(e);
  if (unrecoverableStatus.contains(status.getCode())) {
    throw new GrpcException(e);
  }
}
 
開發者ID:pingcap,項目名稱:tikv-client-lib-java,代碼行數:10,代碼來源:RetryPolicy.java


注:本文中的io.grpc.Status.fromThrowable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。