Describes a method of a service.

interface MethodDescriptorProtoAmino {
    client_streaming?: boolean;
    input_type?: string;
    name?: string;
    options?: MethodOptionsAmino;
    output_type?: string;
    server_streaming?: boolean;
}

Properties

client_streaming?: boolean

Identifies if client streams multiple client messages

input_type?: string

Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.

name?: string
output_type?: string
server_streaming?: boolean

Identifies if server streams multiple server messages