MethodDescriptorProto

@SerialVersionUID(0L) final case class MethodDescriptorProto(name: Option[String], inputType: Option[String], outputType: Option[String], options: Option[MethodOptions], clientStreaming: Option[Boolean], serverStreaming: Option[Boolean], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[MethodDescriptorProto]

Describes a method of a service.

Describes a method of a service.

Value Params
clientStreaming

Identifies if client streams multiple client messages

inputType

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

serverStreaming

Identifies if server streams multiple server messages

Companion
object
trait Updatable[MethodDescriptorProto]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
final def toByteArray: Array[Byte]

Serializes the messgae and returns a byte array containing its raw bytes

Serializes the messgae and returns a byte array containing its raw bytes

Inherited from
GeneratedMessage
final def toByteString: ByteString

Serializes the messgae and returns a ByteString containing its raw bytes

Serializes the messgae and returns a ByteString containing its raw bytes

Inherited from
GeneratedMessage
final def toPMessage: PMessage
Inherited from
GeneratedMessage
final def writeDelimitedTo(output: OutputStream): Unit
Inherited from
GeneratedMessage
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Inherited from
GeneratedMessage