org.eclipse.jetty.server.HttpConnection.getEndPoint()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(114)

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

HttpConnection.getEndPoint介绍

暂无

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

@Override
public boolean isOptimizedForDirectBuffers()
{
  return getEndPoint().isOptimizedForDirectBuffers();
}

代码示例来源:origin: jenkinsci/winstone

public void blockingReadFillInterested()
{
  // We try fillInterested here because of SSL and 
  // spurious wakeups.  With  blocking reads, we read in a loop
  // that tries to read/parse content and blocks waiting if there is
  // none available.  The loop can be woken up by incoming encrypted 
  // bytes, which due to SSL might not produce any decrypted bytes.
  // Thus the loop needs to register fill interest again.  However if 
  // the loop is woken up spuriously, then the register interest again
  // can result in a pending read exception, unless we use tryFillInterested.
  getEndPoint().tryFillInterested(_blockingReadCallback);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

protected HttpChannelOverHttp newHttpChannel()
{
  HttpChannelOverHttp httpChannel = new HttpChannelOverHttp(this, _connector, _config, getEndPoint(), this);
  return httpChannel;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

@Override
public void abort(Throwable failure)
{
  // Do a direct close of the output, as this may indicate to a client that the
  // response is bad either with RST or by abnormal completion of chunked response.
  getEndPoint().close();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

public void blockingReadFillInterested()
{
  getEndPoint().fillInterested(_blockingReadCallback);
}

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

@Override
public void abort()
{
  // Do a direct close of the output, as this may indicate to a client that the
  // response is bad either with RST or by abnormal completion of chunked response.
  getEndPoint().close();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

public void asyncReadFillInterested()
{
  getEndPoint().fillInterested(_asyncReadCallback);
}

代码示例来源:origin: jenkinsci/winstone

@Override
public boolean isOptimizedForDirectBuffers()
{
  return getEndPoint().isOptimizedForDirectBuffers();
}

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

protected HttpChannelOverHttp newHttpChannel(HttpInput<ByteBuffer> httpInput)
{
  return new HttpChannelOverHttp(_connector, _config, getEndPoint(), this, httpInput);
}

代码示例来源:origin: jenkinsci/winstone

public void asyncReadFillInterested()
{
  getEndPoint().fillInterested(_asyncReadCallback);
}

代码示例来源:origin: jenkinsci/winstone

protected HttpChannelOverHttp newHttpChannel()
{
  return new HttpChannelOverHttp(this, _connector, _config, getEndPoint(), this);
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

private void blockingWrite(ByteBuffer... bytes) throws IOException
{
  try
  {
    getEndPoint().write(_writeBlocker, bytes);
    _writeBlocker.block();
  }
  catch (InterruptedException x)
  {
    throw (IOException)new InterruptedIOException().initCause(x);
  }
  catch (TimeoutException e)
  {
    throw new IOException(e);
  }
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

private void blockingWrite(ByteBuffer... bytes) throws IOException
{
  try
  {
    getEndPoint().write(_writeBlocker, bytes);
    _writeBlocker.block();
  }
  catch (InterruptedException x)
  {
    throw (IOException)new InterruptedIOException().initCause(x);
  }
  catch (TimeoutException e)
  {
    throw new IOException(e);
  }
}

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

@Override
public void onCompleteFailure(final Throwable x)
{
  releaseHeader();
  failedCallback(_callback,x);
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

@Override
public void onCompleteFailure(final Throwable x)
{
  releaseHeader();
  failedCallback(_callback,x);
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

代码示例来源:origin: jenkinsci/winstone

@Override
public void onCompleteFailure(final Throwable x)
{
  releaseHeader();
  failedCallback(_callback,x);
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

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

@Override
protected void onCompleteSuccess()
{
  releaseHeader();
  _callback.succeeded();
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

代码示例来源:origin: jenkinsci/winstone

@Override
public void abort(Throwable failure)
{
  if (LOG.isDebugEnabled())
    LOG.debug("abort {} {}",this,failure);
  // Do a direct close of the output, as this may indicate to a client that the
  // response is bad either with RST or by abnormal completion of chunked response.
  getEndPoint().close();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

@Override
protected void onCompleteSuccess()
{
  releaseHeader();
  _callback.succeeded();
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

代码示例来源:origin: jenkinsci/winstone

@Override
protected void onCompleteSuccess()
{
  releaseHeader();
  _callback.succeeded();
  if (_shutdownOut)
    getEndPoint().shutdownOutput();
}

相关文章

微信公众号

最新文章

更多