mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-16 13:30:55 +00:00

* Use official cloud event proto schema * format * fix bug in cloud event attribute creation --------- Co-authored-by: Kosta Petan <kostapetan@gmail.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
24 lines
642 B
Python
24 lines
642 B
Python
"""
|
|
@generated by mypy-protobuf. Do not edit manually!
|
|
isort:skip_file
|
|
*
|
|
CloudEvent Protobuf Format
|
|
|
|
- Required context attributes are explicitly represented.
|
|
- Optional and Extension context attributes are carried in a map structure.
|
|
- Data may be represented as binary, text, or protobuf messages.
|
|
"""
|
|
|
|
import abc
|
|
import collections.abc
|
|
import grpc
|
|
import grpc.aio
|
|
import typing
|
|
|
|
_T = typing.TypeVar("_T")
|
|
|
|
class _MaybeAsyncIterator(collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta): ...
|
|
|
|
class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore[misc, type-arg]
|
|
...
|