com.google.common.util.concurrent.AbstractFuture.cancellationExceptionWithCause()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(9.3k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中com.google.common.util.concurrent.AbstractFuture.cancellationExceptionWithCause()方法的一些代码示例,展示了AbstractFuture.cancellationExceptionWithCause()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AbstractFuture.cancellationExceptionWithCause()方法的具体详情如下:
包路径:com.google.common.util.concurrent.AbstractFuture
类名称:AbstractFuture
方法名:cancellationExceptionWithCause

AbstractFuture.cancellationExceptionWithCause介绍

暂无

代码示例

代码示例来源:origin: google/guava

/** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link SetFuture}. */
private V getDoneValue(Object obj) throws ExecutionException {
 // While this seems like it might be too branch-y, simple benchmarking proves it to be
 // unmeasurable (comparing done AbstractFutures with immediateFuture)
 if (obj instanceof Cancellation) {
  throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
 } else if (obj instanceof Failure) {
  throw new ExecutionException(((Failure) obj).exception);
 } else if (obj == NULL) {
  return null;
 } else {
  @SuppressWarnings("unchecked") // this is the only other option
  V asV = (V) obj;
  return asV;
 }
}

代码示例来源:origin: google/j2objc

/** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link SetFuture}. */
private V getDoneValue(Object obj) throws ExecutionException {
 // While this seems like it might be too branch-y, simple benchmarking proves it to be
 // unmeasurable (comparing done AbstractFutures with immediateFuture)
 if (obj instanceof Cancellation) {
  throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
 } else if (obj instanceof Failure) {
  throw new ExecutionException(((Failure) obj).exception);
 } else if (obj == NULL) {
  return null;
 } else {
  @SuppressWarnings("unchecked") // this is the only other option
  V asV = (V) obj;
  return asV;
 }
}

代码示例来源:origin: wildfly/wildfly

/** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link SetFuture}. */
private V getDoneValue(Object obj) throws ExecutionException {
 // While this seems like it might be too branch-y, simple benchmarking proves it to be
 // unmeasurable (comparing done AbstractFutures with immediateFuture)
 if (obj instanceof Cancellation) {
  throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
 } else if (obj instanceof Failure) {
  throw new ExecutionException(((Failure) obj).exception);
 } else if (obj == NULL) {
  return null;
 } else {
  @SuppressWarnings("unchecked") // this is the only other option
  V asV = (V) obj;
  return asV;
 }
}

代码示例来源:origin: com.google.guava/guava-jdk5

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: com.diffplug.guava/guava-concurrent

@Override
  public V get() {
    throw AbstractFuture.cancellationExceptionWithCause(
        "Task was cancelled.", thrown);
  }
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: Nextdoor/bender

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.google.guava

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: org.hudsonci.lib.guava/guava

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

@Override
 public V get() {
  throw AbstractFuture.cancellationExceptionWithCause(
    "Task was cancelled.", thrown);
 }
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link SetFuture}. */
private V getDoneValue(Object obj) throws ExecutionException {
 // While this seems like it might be too branch-y, simple benchmarking proves it to be
 // unmeasurable (comparing done AbstractFutures with immediateFuture)
 if (obj instanceof Cancellation) {
  throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
 } else if (obj instanceof Failure) {
  throw new ExecutionException(((Failure) obj).exception);
 } else if (obj == NULL) {
  return null;
 } else {
  @SuppressWarnings("unchecked") // this is the only other option
  V asV = (V) obj;
  return asV;
 }
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link SetFuture}. */
private V getDoneValue(Object obj) throws ExecutionException {
 // While this seems like it might be too branch-y, simple benchmarking proves it to be
 // unmeasurable (comparing done AbstractFutures with immediateFuture)
 if (obj instanceof Cancellation) {
  throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
 } else if (obj instanceof Failure) {
  throw new ExecutionException(((Failure) obj).exception);
 } else if (obj == NULL) {
  return null;
 } else {
  @SuppressWarnings("unchecked") // this is the only other option
  V asV = (V) obj;
  return asV;
 }
}

代码示例来源:origin: com.diffplug.guava/guava-concurrent

/**
 * Unboxes {@code obj}.  Assumes that obj is not {@code null} or a {@link SetFuture}.
 */
private V getDoneValue(Object obj) throws ExecutionException {
  // While this seems like it might be too branch-y, simple benchmarking proves it to be
  // unmeasurable (comparing done AbstractFutures with immediateFuture)
  if (obj instanceof Cancellation) {
    throw cancellationExceptionWithCause("Task was cancelled.", ((Cancellation) obj).cause);
  } else if (obj instanceof Failure) {
    throw new ExecutionException(((Failure) obj).exception);
  } else if (obj == NULL) {
    return null;
  } else {
    @SuppressWarnings("unchecked") // this is the only other option
    V asV = (V) obj;
    return asV;
  }
}

代码示例来源:origin: com.google.guava/guava-jdk5

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.google.guava

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

代码示例来源:origin: org.hudsonci.lib.guava/guava

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/**
 * Implementation of the actual value retrieval.  Will return the value
 * on success, an exception on failure, a cancellation on cancellation, or
 * an illegal state if the synchronizer is in an invalid state.
 */
private V getValue() throws CancellationException, ExecutionException {
 int state = getState();
 switch (state) {
  case COMPLETED:
   if (exception != null) {
    throw new ExecutionException(exception);
   } else {
    return value;
   }
  case CANCELLED:
  case INTERRUPTED:
   throw cancellationExceptionWithCause(
     "Task was cancelled.", exception);
  default:
   throw new IllegalStateException(
     "Error, synchronizer in invalid state: " + state);
 }
}

相关文章