本文整理了Java中org.glassfish.grizzly.utils.Exceptions.makeIOException()
方法的一些代码示例,展示了Exceptions.makeIOException()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Exceptions.makeIOException()
方法的具体详情如下:
包路径:org.glassfish.grizzly.utils.Exceptions
类名称:Exceptions
方法名:makeIOException
[英]Wrap the given Throwable by IOException.
[中]用IOException包装给定的Throwable。
代码示例来源:origin: com.ning/async-http-client
@Override
public void onError(Throwable t) {
future.failure(makeIOException(t));
}
});
代码示例来源:origin: com.ning/async-http-client
@Override
public void onFailure(final Connection connection, final Throwable t) {
connection.closeWithReason(Exceptions.makeIOException(t));
}
代码示例来源:origin: com.ning/async-http-client
@Override
public void onError(Throwable t) {
c.setMaxAsyncWriteQueueSize(feedableBodyGenerator.origMaxPendingBytes);
c.closeWithReason(Exceptions.makeIOException(t));
}
代码示例来源:origin: com.ning/async-http-client
@Override
public void exceptionOccurred(final FilterChainContext ctx,
final Throwable error) {
ctx.getCloseable().closeWithReason(Exceptions.makeIOException(error));
}
代码示例来源:origin: com.ning/async-http-client
private static void block(final Connection c,
final FutureImpl<Boolean> future) {
try {
final long writeTimeout =
c.getTransport().getWriteTimeout(MILLISECONDS);
if (writeTimeout != -1) {
future.get(writeTimeout, MILLISECONDS);
} else {
future.get();
}
} catch (ExecutionException e) {
c.closeWithReason(Exceptions.makeIOException(e.getCause()));
} catch (Exception e) {
c.closeWithReason(Exceptions.makeIOException(e));
}
}
代码示例来源:origin: com.ning/async-http-client
@Override
public void ready() {
try {
flush();
} catch (IOException e) {
final Connection c = feedableBodyGenerator.context.getConnection();
c.setMaxAsyncWriteQueueSize(feedableBodyGenerator.origMaxPendingBytes);
c.closeWithReason(Exceptions.makeIOException(e));
}
}
代码示例来源:origin: com.ning/async-http-client
: future.get();
} catch (ExecutionException ee) {
throw Exceptions.makeIOException(ee.getCause());
} catch (Exception e) {
throw Exceptions.makeIOException(e);
} finally {
future.cancel(false);
代码示例来源:origin: org.glassfish.grizzly/grizzly-http
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: javaee/grizzly
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: org.glassfish.grizzly/grizzly-http-client
@Override
public void onError(Throwable t) {
future.failure(makeIOException(t));
}
});
代码示例来源:origin: org.apache.apex/apex-shaded-ning19
@Override
public void onError(Throwable t) {
future.failure(makeIOException(t));
}
});
代码示例来源:origin: javaee/grizzly
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: javaee/grizzly
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: javaee/grizzly
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: javaee/grizzly
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server-core
@Override
public void onError(Throwable t) {
future.failure(Exceptions.makeIOException(t));
}
});
代码示例来源:origin: org.glassfish.grizzly/grizzly-http-client
@Override
public void exceptionOccurred(final FilterChainContext ctx,
final Throwable error) {
ctx.getCloseable().closeWithReason(Exceptions.makeIOException(error));
}
代码示例来源:origin: org.apache.apex/apex-shaded-ning19
@Override
public void onError(Throwable t) {
c.setMaxAsyncWriteQueueSize(feedableBodyGenerator.origMaxPendingBytes);
c.closeWithReason(Exceptions.makeIOException(t));
}
代码示例来源:origin: org.glassfish.grizzly/grizzly-http-client
@Override
public void onError(Throwable t) {
c.setMaxAsyncWriteQueueSize(feedableBodyGenerator.origMaxPendingBytes);
c.closeWithReason(Exceptions.makeIOException(t));
}
内容来源于网络,如有侵权,请联系作者删除!