org.elasticsearch.threadpool.ThreadPool.assertNotScheduleThread()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(7.9k)|赞(0)|评价(0)|浏览(144)

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

ThreadPool.assertNotScheduleThread介绍

暂无

代码示例

代码示例来源:origin: org.elasticsearch/elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get(long timeout, TimeUnit unit) throws InterruptedException,
  14. TimeoutException, ExecutionException {
  15. assert timeout <= 0 ||
  16. (Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  17. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  18. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  19. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON));
  20. return sync.get(unit.toNanos(timeout));
  21. }

代码示例来源:origin: org.elasticsearch/elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get() throws InterruptedException, ExecutionException {
  14. assert Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  15. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  16. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  17. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON);
  18. return sync.get();
  19. }

代码示例来源:origin: harbby/presto-connectors

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get(long timeout, TimeUnit unit) throws InterruptedException,
  14. TimeoutException, ExecutionException {
  15. assert timeout <= 0 ||
  16. (Transports.assertNotTransportThread(BLOCKING_OP_REASON) && ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON));
  17. return sync.get(unit.toNanos(timeout));
  18. }

代码示例来源:origin: harbby/presto-connectors

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get() throws InterruptedException, ExecutionException {
  14. assert Transports.assertNotTransportThread(BLOCKING_OP_REASON) && ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON);
  15. return sync.get();
  16. }

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get(long timeout, TimeUnit unit) throws InterruptedException,
  14. TimeoutException, ExecutionException {
  15. assert timeout <= 0 ||
  16. (Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  17. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  18. ClusterService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON));
  19. return sync.get(unit.toNanos(timeout));
  20. }

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get() throws InterruptedException, ExecutionException {
  14. assert Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  15. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  16. ClusterService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON);
  17. return sync.get();
  18. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get(long timeout, TimeUnit unit) throws InterruptedException,
  14. TimeoutException, ExecutionException {
  15. assert timeout <= 0 ||
  16. (Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  17. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  18. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  19. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON));
  20. return sync.get(unit.toNanos(timeout));
  21. }

代码示例来源:origin: apache/servicemix-bundles

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get(long timeout, TimeUnit unit) throws InterruptedException,
  14. TimeoutException, ExecutionException {
  15. assert timeout <= 0 ||
  16. (Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  17. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  18. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  19. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON));
  20. return sync.get(unit.toNanos(timeout));
  21. }

代码示例来源:origin: apache/servicemix-bundles

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get() throws InterruptedException, ExecutionException {
  14. assert Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  15. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  16. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  17. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON);
  18. return sync.get();
  19. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

  1. /**
  2. * {@inheritDoc}
  3. * <p>
  4. * The default {@link BaseFuture} implementation throws {@code
  5. * InterruptedException} if the current thread is interrupted before or during
  6. * the call, even if the value is already available.
  7. *
  8. * @throws InterruptedException if the current thread was interrupted before
  9. * or during the call (optional but recommended).
  10. * @throws CancellationException {@inheritDoc}
  11. */
  12. @Override
  13. public V get() throws InterruptedException, ExecutionException {
  14. assert Transports.assertNotTransportThread(BLOCKING_OP_REASON) &&
  15. ThreadPool.assertNotScheduleThread(BLOCKING_OP_REASON) &&
  16. ClusterApplierService.assertNotClusterStateUpdateThread(BLOCKING_OP_REASON) &&
  17. MasterService.assertNotMasterUpdateThread(BLOCKING_OP_REASON);
  18. return sync.get();
  19. }

相关文章