本文整理了Java中org.eclipse.jetty.client.HttpClient.setDispatchIO()
方法的一些代码示例,展示了HttpClient.setDispatchIO()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpClient.setDispatchIO()
方法的具体详情如下:
包路径:org.eclipse.jetty.client.HttpClient
类名称:HttpClient
方法名:setDispatchIO
[英]Whether to dispatch I/O operations from the selector thread to a different thread.
This implementation never blocks on I/O operation, but invokes application callbacks that may take time to execute or block on other I/O. If application callbacks are known to take time or block on I/O, then parameter dispatchIOshould be set to true. If application callbacks are known to be quick and never block on I/O, then parameter dispatchIOmay be set to false.
[中]是否将I/O操作从选择器线程分派到其他线程。
此实现从不阻塞I/O操作,而是调用可能需要时间执行或阻塞其他I/O的应用程序回调。如果已知应用程序回调需要时间或阻塞I/O,则应将参数dispatchIOS设置为true。如果已知应用程序回调速度快且从不阻塞I/O,则参数dispatchIOM可能会设置为false。
代码示例来源:origin: org.eclipse.jetty.websocket/websocket-client
@Deprecated
public void setDispatchIO(boolean dispatchIO)
{
this.httpClient.setDispatchIO(dispatchIO);
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
setDispatchIO(false);
代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9
setDispatchIO(false);
内容来源于网络,如有侵权,请联系作者删除!