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

com.seezoon.grpc.support.CustomHeader Maven / Gradle / Ivy

package com.seezoon.grpc.support;

import io.grpc.Metadata;

public class CustomHeader {

    /**
     * 消息号
     */
    public static final Metadata.Key REQ_TID = Metadata.Key.of("x-tid", Metadata.ASCII_STRING_MARSHALLER);

    public static final Metadata.Key RESP_ERROR_TYPE = Metadata.Key
            .of("x-error-type", Metadata.ASCII_STRING_MARSHALLER);

    public static final Metadata.Key RESP_ERROR_CODE = Metadata.Key
            .of("x-error-code", Metadata.ASCII_STRING_MARSHALLER);

    public static final Metadata.Key RESP_ERROR_MSG = Metadata.Key
            .of("x-error-msg", Metadata.ASCII_STRING_MARSHALLER);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy