ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/ErrorHandler.java

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

      
    
Rootfs path

      
    
Size
1746 (1.7 KB)
MD5
ec4c97675961220f08c1e43dbd17cc5a
SHA1
b9559cf503436acb96c81d1cd407bb4f95babb57
SHA256
476690b73aa070c79158b0625a6a580656b774b162e1a499056ee38940ae75c8
SHA512

      
    
SHA1_git
76d703d9002c110bd5fcb8d2c17fcb28b3f65fc5
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ErrorHandler.java | 1.7 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.catalina.tribes; /** * The <code>ErrorHandler</code> class is used when sending messages that are sent asynchronously and the application * still needs to get confirmation when the message was sent successfully or when a message errored out. */ public interface ErrorHandler { /** * Invoked if the message is dispatched async, and an error occurs * * @param x ChannelException - the error that happened * @param id - the unique id for the message * * @see Channel#send(Member[], java.io.Serializable, int, ErrorHandler) */ void handleError(ChannelException x, UniqueId id); /** * Invoked when the message has been sent successfully. * * @param id - the unique id for the message * * @see Channel#send(Member[], java.io.Serializable, int, ErrorHandler) */ void handleCompletion(UniqueId id); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
51.97
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