ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/AsyncContextCallback.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/AsyncContextCallback.java
Status
scanned
Type
file
Name
AsyncContextCallback.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2142 (2.1 KB)
MD5
11bf7973d1a5532e2936bd25e70738fc
SHA1
3722f4e3cd439ff6dd546cf081789f79c8ef99cf
SHA256
9dc1d1a2971414acbbfd5ba943ec1e6d37ec0d5df29a7be591d41155d328e2e7
SHA512

      
    
SHA1_git
fe46c9e93c0bfdbb9ea8334c1173fda2addafff4
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
AsyncContextCallback.java | 2.1 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.coyote; /** * Provides a mechanism for the Coyote connectors to communicate with the {@link jakarta.servlet.AsyncContext}. It is * implemented in this manner so that the org.apache.coyote package does not have a dependency on the * org.apache.catalina package. */ public interface AsyncContextCallback { void fireOnComplete(); /** * Reports if the web application associated with this async request is available. * * @return {@code true} if the associated web application is available, otherwise {@code false} */ boolean isAvailable(); /** * Used to notify the Context that async processing has started. Specifically, for the counting of in-progress async * requests to work correctly, this must be called exactly once every time the {@link AsyncStateMachine} transitions * from DISPATCHED to any other state. */ void incrementInProgressAsyncCount(); /** * Used to notify the Context that async processing has ended. Specifically, for the counting of in-progress async * requests to work correctly, this must be called exactly once every time the {@link AsyncStateMachine} transitions * to DISPATCHED from any other state. */ void decrementInProgressAsyncCount(); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
43.12
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9