Endpoint type
gRPC / endpointgRPC endpoint
A unary or streaming RPC method.
When to use
Create this endpoint inside a gRPC connector, then select it from an Input or Sink stream.
Behavior
- Defines one concrete entry or exit point.
- Its owning connector supplies the transport.
General properties
Endpoint identity
PropertyTypeDescription
namestringEndpoint name unique in the topology.
RequiredgRPC properties
gRPC endpoint contract
PropertyTypeDescription
grpcMethodTypeNoStreaming | ClientStreaming | ServerStreaming | BidirectionalStreamingGenerated RPC streaming contract.
Default:NoStreamingAllowed: NoStreaming, ClientStreaming, ServerStreaming, BidirectionalStreamingmethodNamestringMethod name from the protobuf service.
RequiredFunction properties
Generated transport handler and code placement
PropertyTypeDescription
functionNamesymbolGenerated endpoint handler name.
functionPackagestringGenerated handler package.
publicFunctionbooleanPlaces the handler in shared code.
Default:falsefunctionDescriptiontextGenerated documentation comment.
functionInitializerGroupstringDependency-injection initialization group.
functionModuleModuleShared module for the handler.
Visible when publicFunction is true.Configuration example
name: Create order
grpcMethodType: NoStreaming
methodName: CreateOrder