java.lang.Thread.popInterruptAction$()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.3k)|赞(0)|评价(0)|浏览(146)

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

Thread.popInterruptAction$介绍

[英]Removes interruptAction so it is not invoked upon interruption.
[中]删除interruptAction,以便在中断时不会调用它。

代码示例

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

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

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

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: MobiVM/robovm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: MobiVM/robovm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: ibinti/bugvm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 *
 * @param success
 *            pass {@code true} if the blocking operation has succeeded and
 *            has had a noticeable effect; {@code false} otherwise.
 * @throws AsynchronousCloseException
 *             if this channel is closed by another thread while this method
 *             is executing.
 * @throws ClosedByInterruptException
 *             if another thread interrupts the calling thread while this
 *             method is executing.
 */
protected final void end(boolean success) throws AsynchronousCloseException {
  Thread.currentThread().popInterruptAction$(interruptAndCloseRunnable);
  if (interrupted) {
    interrupted = false;
    throw new ClosedByInterruptException();
  }
  if (!success && closed) {
    throw new AsynchronousCloseException();
  }
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Indicates the end of a code section that has been started with
 * {@code begin()} and that includes a potentially blocking I/O operation.
 */
protected final void end() {
  Thread.currentThread().popInterruptAction$(wakeupRunnable);
}

相关文章