interface ResponseCommon {
    header: Headers;
    method: MethodInfo<I, O>;
    service: ServiceType;
    trailer: Headers;
}

Type Parameters

Hierarchy

Properties

header: Headers

Headers received from the response.

method: MethodInfo<I, O>

Metadata related to the service method that is being called.

service: ServiceType

Metadata related to the service that is being called.

trailer: Headers

Trailers received from the response. Note that trailers are only populated when the entirety of the response has been read.

Generated using TypeDoc