microsoft / durabletask-go

The Durable Task Framework is a lightweight, embeddable engine for writing durable, fault-tolerant business logic (orchestrations) as ordinary code.
Apache License 2.0
178 stars 25 forks source link

Separate gRPC service registration from NewGrpcExecutor #26

Closed ItalyPaleAle closed 11 months ago

ItalyPaleAle commented 11 months ago

This change allows creating a NewGrpcExecutor and separately register it into a gRPC server. This makes it possible to use the same executor with multiple gRPC servers.

Part of the fix for dapr/dapr#6648