本文整理匯總了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);
}
}
示例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);
}
}