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

grpcstarter.server.feature.exceptionhandling.GrpcUnhandledExceptionProcessor Maven / Gradle / Ivy

package grpcstarter.server.feature.exceptionhandling;

import io.grpc.Metadata;
import io.grpc.ServerCall;

/**
 * Process unhandled exception.
 *
 * 

Generally used for exception reporting. * * @author Freeman */ public interface GrpcUnhandledExceptionProcessor { /** * Process unhandled exception. * * @param e unhandled exception * @param call server call * @param headers headers */ void process(Throwable e, ServerCall call, Metadata headers); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy