You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both APIs are stream-based, so the SDK is expected to read input as a stream, send it to Dapr using a streamed gRPC in chunks, and in parallel read the response from Dapr (in chunks sent over the same gRPC stream) and return a readable stream to the caller.
The reference implementation is in the Go SDK: dapr/go-sdk#387
The text was updated successfully, but these errors were encountered:
@ItalyPaleAle FYI in the Python SDK we don't name the functions Alpha1 etc. We use a stable and then point the implementation to the Alpha API, but add a warning that the API being used is Alpha.
dapr/dapr#6197 implements two new APIs in Dapr:
EncryptAlpha1
DecryptAlpha1
Both APIs are stream-based, so the SDK is expected to read input as a stream, send it to Dapr using a streamed gRPC in chunks, and in parallel read the response from Dapr (in chunks sent over the same gRPC stream) and return a readable stream to the caller.
The reference implementation is in the Go SDK: dapr/go-sdk#387
The text was updated successfully, but these errors were encountered: