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

com.fullcontact.rpc.jersey.ErrorHandler Maven / Gradle / Ivy

The newest version!
package com.fullcontact.rpc.jersey;

import com.google.common.collect.ImmutableMultimap;
import java.io.IOException;
import java.util.Optional;
import javax.ws.rs.core.Response;

/**
 * Registry for (currently) JVM-global gRPC error handlers. This allows users to override the error handling methodology
 * without patching the library.
 *
 * This class should be considered unstable, a more comprehensive plugin mechanism will be built in the future.
 */
public final class ErrorHandler {
    private static GrpcJerseyErrorHandler errorHandler = new GrpcJerseyErrorHandler.Default();

    private ErrorHandler() {}

    static Optional handleUnaryError(Throwable t, ImmutableMultimap responseHeaders) {
        return errorHandler.handleUnaryError(t, responseHeaders);
    }

    static Optional handleStreamingError(Throwable t) throws IOException {
        return errorHandler.handleStreamingError(t);
    }

    /**
     * Overrides the default error handler on a global basis. Beware, this shouldn't be done after requests start.
     */
    public static void setErrorHandler(GrpcJerseyErrorHandler errorHandler) {
        ErrorHandler.errorHandler = errorHandler;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy