org.apache.coyote.Request.action()方法的使用及代码示例

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

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

Request.action介绍

暂无

代码示例

代码示例来源:origin: jboss.web/jbossweb

  1. /**
  2. * Set connection timeout.
  3. */
  4. public void setTimeout(int timeout) {
  5. coyoteRequest.action(ActionCode.ACTION_EVENT_TIMEOUT, timeout);
  6. }
  7. public void setTimeout0(int timeout) {

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public boolean isAsyncCompleting() {
  2. if (asyncContext == null) {
  3. return false;
  4. }
  5. AtomicBoolean result = new AtomicBoolean(false);
  6. coyoteRequest.action(ActionCode.ASYNC_IS_COMPLETING, result);
  7. return result.get();
  8. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public boolean isAsyncDispatching() {
  2. if (asyncContext == null) {
  3. return false;
  4. }
  5. AtomicBoolean result = new AtomicBoolean(false);
  6. coyoteRequest.action(ActionCode.ASYNC_IS_DISPATCHING, result);
  7. return result.get();
  8. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public boolean isAsync() {
  2. if (asyncContext == null) {
  3. return false;
  4. }
  5. AtomicBoolean result = new AtomicBoolean(false);
  6. coyoteRequest.action(ActionCode.ASYNC_IS_ASYNC, result);
  7. return result.get();
  8. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. public boolean isTrailerFieldsReady() {
  2. AtomicBoolean result = new AtomicBoolean(false);
  3. action(ActionCode.IS_TRAILER_FIELDS_READY, result);
  4. return result.get();
  5. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public boolean isStarted() {
  2. AtomicBoolean result = new AtomicBoolean(false);
  3. request.getCoyoteRequest().action(
  4. ActionCode.ASYNC_IS_STARTED, result);
  5. return result.get();
  6. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public PushBuilder newPushBuilder(HttpServletRequest request) {
  2. AtomicBoolean result = new AtomicBoolean();
  3. coyoteRequest.action(ActionCode.IS_PUSH_SUPPORTED, result);
  4. if (result.get()) {
  5. return new ApplicationPushBuilder(this, request);
  6. } else {
  7. return null;
  8. }
  9. }

代码示例来源:origin: org.jboss.web/jbossweb

  1. /**
  2. * Returns the Internet Protocol (IP) source port of the client
  3. * or last proxy that sent the request.
  4. */
  5. public int getRemotePort(){
  6. if (remotePort == -1) {
  7. coyoteRequest.action
  8. (ActionCode.ACTION_REQ_REMOTEPORT_ATTRIBUTE, coyoteRequest);
  9. remotePort = coyoteRequest.getRemotePort();
  10. }
  11. return remotePort;
  12. }

代码示例来源:origin: jboss.web/jbossweb

  1. /**
  2. * Returns the Internet Protocol (IP) source port of the client
  3. * or last proxy that sent the request.
  4. */
  5. public int getRemotePort(){
  6. if (remotePort == -1) {
  7. coyoteRequest.action
  8. (ActionCode.ACTION_REQ_REMOTEPORT_ATTRIBUTE, coyoteRequest);
  9. remotePort = coyoteRequest.getRemotePort();
  10. }
  11. return remotePort;
  12. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. @Override
  2. public void setTimeout(long timeout) {
  3. check();
  4. this.timeout = timeout;
  5. request.getCoyoteRequest().action(ActionCode.ASYNC_SETTIMEOUT,
  6. Long.valueOf(timeout));
  7. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. /**
  2. * @return the remote IP address making this Request.
  3. */
  4. @Override
  5. public String getRemoteAddr() {
  6. if (remoteAddr == null) {
  7. coyoteRequest.action
  8. (ActionCode.REQ_HOST_ADDR_ATTRIBUTE, coyoteRequest);
  9. remoteAddr = coyoteRequest.remoteAddr().toString();
  10. }
  11. return remoteAddr;
  12. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. /**
  2. * Check the configuration for aborted uploads and if configured to do so,
  3. * disable the swallowing of any remaining input and close the connection
  4. * once the response has been written.
  5. */
  6. protected void checkSwallowInput() {
  7. Context context = getContext();
  8. if (context != null && !context.getSwallowAbortedUploads()) {
  9. coyoteRequest.action(ActionCode.DISABLE_SWALLOW_INPUT, null);
  10. }
  11. }

代码示例来源:origin: codefollower/Tomcat-Research

  1. /**
  2. * Return the remote IP address making this Request.
  3. */
  4. @Override
  5. public String getRemoteAddr() {
  6. if (remoteAddr == null) {
  7. coyoteRequest.action
  8. (ActionCode.REQ_HOST_ADDR_ATTRIBUTE, coyoteRequest);
  9. remoteAddr = coyoteRequest.remoteAddr().toString();
  10. }
  11. return remoteAddr;
  12. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. /**
  2. * @return the remote IP address making this Request.
  3. */
  4. @Override
  5. public String getRemoteAddr() {
  6. if (remoteAddr == null) {
  7. coyoteRequest.action
  8. (ActionCode.REQ_HOST_ADDR_ATTRIBUTE, coyoteRequest);
  9. remoteAddr = coyoteRequest.remoteAddr().toString();
  10. }
  11. return remoteAddr;
  12. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. @Override
  2. public void run() {
  3. request.getCoyoteRequest().action(ActionCode.ASYNC_DISPATCHED, null);
  4. try {
  5. applicationDispatcher.dispatch(servletRequest, servletResponse);
  6. } catch (Exception e) {
  7. throw new RuntimeException(sm.getString("asyncContextImpl.asyncDispachError"), e);
  8. }
  9. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public int available() {
  2. int available = availableInThisBuffer();
  3. if (available == 0) {
  4. coyoteRequest.action(ActionCode.AVAILABLE,
  5. Boolean.valueOf(coyoteRequest.getReadListener() != null));
  6. available = (coyoteRequest.getAvailable() > 0) ? 1 : 0;
  7. }
  8. return available;
  9. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. @Override
  2. public void complete() {
  3. if (log.isDebugEnabled()) {
  4. logDebug("complete ");
  5. }
  6. check();
  7. request.getCoyoteRequest().action(ActionCode.ASYNC_COMPLETE, null);
  8. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. @Override
  2. public void complete() {
  3. if (log.isDebugEnabled()) {
  4. logDebug("complete ");
  5. }
  6. check();
  7. request.getCoyoteRequest().action(ActionCode.ASYNC_COMPLETE, null);
  8. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. @Override
  2. public void start(final Runnable run) {
  3. if (log.isDebugEnabled()) {
  4. logDebug("start ");
  5. }
  6. check();
  7. Runnable wrapper = new RunnableWrapper(run, context, this.request.getCoyoteRequest());
  8. this.request.getCoyoteRequest().action(ActionCode.ASYNC_RUN, wrapper);
  9. }

代码示例来源:origin: codefollower/Tomcat-Research

  1. @Override
  2. public void start(final Runnable run) {
  3. if (log.isDebugEnabled()) {
  4. logDebug("start ");
  5. }
  6. check();
  7. Runnable wrapper = new RunnableWrapper(run, context, this.request.getCoyoteRequest());
  8. this.request.getCoyoteRequest().action(ActionCode.ASYNC_RUN, wrapper);
  9. }

相关文章

Request类方法