All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.streaming.connectors.pulsar.internal.ExceptionProxy Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
/*
 * Licensed 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.flink.streaming.connectors.pulsar.internal;

import javax.annotation.Nullable;

import java.util.concurrent.atomic.AtomicReference;

/**
 * Creates an exception proxy that interrupts the given thread upon
 * report of an exception. The thread to interrupt may be null.
 *
 */
public class ExceptionProxy {

    /** The thread that should be interrupted when an exception occurs. */
    private final Thread toInterrupt;

    /** The exception to throw. */
    private final AtomicReference exception;

    /**
     * Creates an exception proxy that interrupts the given thread upon
     * report of an exception. The thread to interrupt may be null.
     *
     * @param toInterrupt The thread to interrupt upon an exception. May be null.
     */
    public ExceptionProxy(@Nullable Thread toInterrupt) {
        this.toInterrupt = toInterrupt;
        this.exception = new AtomicReference<>();
    }

    // ------------------------------------------------------------------------

    /**
     * Sets the exception and interrupts the target thread,
     * if no other exception has occurred so far.
     *
     * 

The exception is only set (and the interruption is only triggered), * if no other exception was set before. * * @param t The exception that occurred */ public void reportError(Throwable t) { // set the exception, if it is the first (and the exception is non null) if (t != null && exception.compareAndSet(null, t) && toInterrupt != null) { toInterrupt.interrupt(); } } /** * Checks whether an exception has been set via {@link #reportError(Throwable)}. * If yes, that exception if re-thrown by this method. * * @throws Exception This method re-throws the exception, if set. */ public void checkAndThrowException() throws Exception { Throwable t = exception.get(); if (t != null) { if (t instanceof Exception) { throw (Exception) t; } else if (t instanceof Error) { throw (Error) t; } else { throw new Exception(t); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy