Instance Propertygrpc-swift 2.0.0GRPCCore
description
MethodDescriptor.swift:57var description: String { get }
var description: String { get }
import GRPCCore
A gRPC library for Swift written natively in Swift.
struct MethodDescriptor
A description of a method on a service.
@frozen struct String
A Unicode string value that is a collection of characters.
init(fullyQualifiedService: String, method: String)
Creates a new method descriptor.
init(service: ServiceDescriptor, method: String)
Creates a new method descriptor.
var fullyQualifiedMethod: String { get }
The fully qualified method name in the format “package.service/method”.
var method: String
The name of the method in the service, excluding the service name.
var service: ServiceDescriptor
A description of the service, including its package name.