buz 2.17.0rc1__py3-none-any.whl → 2.17.0rc3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- buz/event/async_subscriber.py +6 -3
- buz/event/base_async_subscriber.py +5 -1
- buz/event/base_subscriber.py +7 -2
- buz/event/meta_base_subscriber.py +10 -7
- buz/event/meta_subscriber.py +7 -5
- buz/event/subscriber.py +6 -3
- buz/event/transactional_outbox/event_to_outbox_record_translator.py +1 -1
- buz/event/transactional_outbox/outbox_record.py +1 -2
- buz/event/transactional_outbox/transactional_outbox_event_bus.py +3 -3
- buz/kafka/infrastructure/deserializers/implementations/cdc/cdc_record_bytes_to_event_deserializer.py +0 -1
- buz/kafka/infrastructure/serializers/implementations/cdc_record_bytes_to_event_serializer.py +3 -5
- buz/kafka/infrastructure/serializers/implementations/json_byte_serializer.py +3 -1
- buz/message.py +8 -11
- buz/metadata.py +8 -0
- {buz-2.17.0rc1.dist-info → buz-2.17.0rc3.dist-info}/METADATA +1 -1
- {buz-2.17.0rc1.dist-info → buz-2.17.0rc3.dist-info}/RECORD +18 -17
- {buz-2.17.0rc1.dist-info → buz-2.17.0rc3.dist-info}/LICENSE +0 -0
- {buz-2.17.0rc1.dist-info → buz-2.17.0rc3.dist-info}/WHEEL +0 -0
buz/event/async_subscriber.py
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
from abc import ABC, abstractmethod
|
|
2
|
+
from typing import Generic, TypeVar
|
|
2
3
|
|
|
3
|
-
from buz.event import Event
|
|
4
|
+
from buz.event.event import Event
|
|
4
5
|
from buz.event.meta_subscriber import MetaSubscriber
|
|
5
6
|
|
|
7
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
|
|
10
|
+
class AsyncSubscriber(Generic[TEvent], MetaSubscriber[TEvent], ABC):
|
|
8
11
|
@abstractmethod
|
|
9
|
-
async def consume(self, event:
|
|
12
|
+
async def consume(self, event: TEvent) -> None:
|
|
10
13
|
pass
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
from abc import ABC
|
|
2
|
+
from typing import Generic, TypeVar
|
|
2
3
|
|
|
4
|
+
from buz.event.event import Event
|
|
3
5
|
from buz.event.async_subscriber import AsyncSubscriber
|
|
4
6
|
from buz.event.meta_base_subscriber import MetaBaseSubscriber
|
|
5
7
|
|
|
8
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
|
|
11
|
+
class BaseAsyncSubscriber(Generic[TEvent], AsyncSubscriber[TEvent], MetaBaseSubscriber[TEvent], ABC):
|
|
8
12
|
pass
|
buz/event/base_subscriber.py
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
from abc import ABC
|
|
2
|
-
from
|
|
2
|
+
from typing import Generic, TypeVar
|
|
3
|
+
|
|
4
|
+
from buz.event.event import Event
|
|
5
|
+
from buz.event.subscriber import Subscriber
|
|
3
6
|
from buz.event.meta_base_subscriber import MetaBaseSubscriber
|
|
4
7
|
|
|
8
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
9
|
+
|
|
5
10
|
|
|
6
|
-
class BaseSubscriber(Subscriber, MetaBaseSubscriber, ABC):
|
|
11
|
+
class BaseSubscriber(Generic[TEvent], Subscriber[TEvent], MetaBaseSubscriber[TEvent], ABC):
|
|
7
12
|
pass
|
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
from abc import ABC
|
|
2
|
-
from typing import Type, get_type_hints
|
|
2
|
+
from typing import Generic, Type, TypeVar, cast, get_type_hints
|
|
3
3
|
|
|
4
|
-
from buz.event import Event
|
|
4
|
+
from buz.event.event import Event
|
|
5
5
|
from buz.event.meta_subscriber import MetaSubscriber
|
|
6
6
|
|
|
7
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
class MetaBaseSubscriber(Generic[TEvent], MetaSubscriber[TEvent], ABC):
|
|
9
11
|
@classmethod
|
|
10
12
|
def fqn(cls) -> str:
|
|
11
13
|
return f"subscriber.{cls.__module__}.{cls.__name__}"
|
|
12
14
|
|
|
13
15
|
@classmethod
|
|
14
|
-
def handles(cls) -> Type[
|
|
16
|
+
def handles(cls) -> Type[TEvent]:
|
|
15
17
|
consume_types = get_type_hints(cls.consume)
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
t_event = consume_types.get("event")
|
|
20
|
+
if t_event is None:
|
|
18
21
|
raise TypeError("event parameter not found in consume method")
|
|
19
22
|
|
|
20
|
-
if not issubclass(
|
|
23
|
+
if not issubclass(t_event, Event):
|
|
21
24
|
raise TypeError("event parameter is not an buz.event.Event subclass")
|
|
22
25
|
|
|
23
|
-
return
|
|
26
|
+
return cast(Type[TEvent], t_event)
|
buz/event/meta_subscriber.py
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
from abc import ABC, abstractmethod
|
|
2
|
-
from typing import Awaitable, Type, Union
|
|
2
|
+
from typing import Awaitable, Generic, Type, TypeVar, Union
|
|
3
3
|
|
|
4
4
|
from buz import Handler
|
|
5
|
-
from buz.event import Event
|
|
5
|
+
from buz.event.event import Event
|
|
6
6
|
|
|
7
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
class MetaSubscriber(Generic[TEvent], Handler[TEvent], ABC):
|
|
9
11
|
@abstractmethod
|
|
10
|
-
def consume(self, event:
|
|
12
|
+
def consume(self, event: TEvent) -> Union[None, Awaitable[None]]:
|
|
11
13
|
pass
|
|
12
14
|
|
|
13
15
|
@classmethod
|
|
14
16
|
@abstractmethod
|
|
15
|
-
def handles(cls) -> Type[
|
|
17
|
+
def handles(cls) -> Type[TEvent]:
|
|
16
18
|
pass
|
buz/event/subscriber.py
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
from abc import ABC, abstractmethod
|
|
2
|
+
from typing import Generic, TypeVar
|
|
2
3
|
|
|
3
|
-
from buz.event import Event
|
|
4
|
+
from buz.event.event import Event
|
|
4
5
|
from buz.event.meta_subscriber import MetaSubscriber
|
|
5
6
|
|
|
7
|
+
TEvent = TypeVar("TEvent", bound=Event)
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
|
|
10
|
+
class Subscriber(Generic[TEvent], MetaSubscriber[TEvent], ABC):
|
|
8
11
|
@abstractmethod
|
|
9
|
-
def consume(self, event:
|
|
12
|
+
def consume(self, event: TEvent) -> None:
|
|
10
13
|
pass
|
|
@@ -2,7 +2,6 @@ from datetime import datetime
|
|
|
2
2
|
from typing import Optional, Any, ClassVar
|
|
3
3
|
from uuid import UUID
|
|
4
4
|
from dataclasses import dataclass, fields
|
|
5
|
-
from dataclasses import field as dataclass_field
|
|
6
5
|
|
|
7
6
|
|
|
8
7
|
@dataclass
|
|
@@ -13,7 +12,7 @@ class OutboxRecord: # type: ignore[misc]
|
|
|
13
12
|
event_fqn: str
|
|
14
13
|
event_payload: dict[str, Any] # type: ignore[misc]
|
|
15
14
|
created_at: datetime
|
|
16
|
-
event_metadata: Optional[dict[str, Any]] =
|
|
15
|
+
event_metadata: Optional[dict[str, Any]] = None
|
|
17
16
|
delivered_at: Optional[datetime] = None
|
|
18
17
|
delivery_errors: int = 0
|
|
19
18
|
delivery_paused_at: Optional[datetime] = None
|
|
@@ -31,10 +31,10 @@ class TransactionalOutboxEventBus(EventBus):
|
|
|
31
31
|
|
|
32
32
|
def bulk_publish(self, events: Iterable[Event]) -> None:
|
|
33
33
|
outbox_records: list[OutboxRecord] = []
|
|
34
|
+
|
|
34
35
|
for event in events:
|
|
35
|
-
self.__publish_middleware_chain_resolver.resolve(
|
|
36
|
-
|
|
37
|
-
)
|
|
36
|
+
self.__publish_middleware_chain_resolver.resolve(event, lambda resolved_event: None)
|
|
37
|
+
outbox_records.append(self.__process_event(event))
|
|
38
38
|
|
|
39
39
|
if len(outbox_records) == 0:
|
|
40
40
|
return None
|
buz/kafka/infrastructure/serializers/implementations/cdc_record_bytes_to_event_serializer.py
CHANGED
|
@@ -2,6 +2,7 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from dataclasses import asdict
|
|
4
4
|
from datetime import datetime
|
|
5
|
+
from typing import Optional
|
|
5
6
|
|
|
6
7
|
from buz.event import Event
|
|
7
8
|
from buz.kafka.infrastructure.cdc.cdc_message import CDCMessage, CDCPayload
|
|
@@ -38,8 +39,5 @@ class CDCRecordBytesToEventSerializer(ByteSerializer):
|
|
|
38
39
|
del payload["metadata"]
|
|
39
40
|
return self.__json_serializer.serialize_as_json(payload)
|
|
40
41
|
|
|
41
|
-
def __serialize_event_metadata(self, event: Event) -> str:
|
|
42
|
-
|
|
43
|
-
return str({})
|
|
44
|
-
|
|
45
|
-
return self.__json_serializer.serialize_as_json(event.metadata)
|
|
42
|
+
def __serialize_event_metadata(self, event: Event) -> Optional[str]:
|
|
43
|
+
return self.__json_serializer.serialize_as_json(event.metadata) # type: ignore[arg-type]
|
|
@@ -15,7 +15,9 @@ ALLOWED_SERIALIZABLE_DICTIONARY_KEYS = str
|
|
|
15
15
|
|
|
16
16
|
JSON_SERIALIZABLE_VALUE = Union[PRIMITIVES, list[PRIMITIVES], dict[ALLOWED_SERIALIZABLE_DICTIONARY_KEYS, PRIMITIVES]]
|
|
17
17
|
|
|
18
|
-
JSON_SERIALIZABLE =
|
|
18
|
+
JSON_SERIALIZABLE = Union[
|
|
19
|
+
dict[ALLOWED_SERIALIZABLE_DICTIONARY_KEYS, Union[JSON_SERIALIZABLE_VALUE, "JSON_SERIALIZABLE"]]
|
|
20
|
+
]
|
|
19
21
|
|
|
20
22
|
|
|
21
23
|
class JSONByteSerializer(ByteSerializer[JSON_SERIALIZABLE]):
|
buz/message.py
CHANGED
|
@@ -3,11 +3,13 @@ from dataclasses import field, dataclass
|
|
|
3
3
|
from datetime import datetime
|
|
4
4
|
from inspect import signature, Parameter
|
|
5
5
|
from types import MappingProxyType
|
|
6
|
-
from typing import Any, ClassVar,
|
|
6
|
+
from typing import Any, ClassVar, get_origin, get_args, Union
|
|
7
7
|
from typing_extensions import Self
|
|
8
8
|
|
|
9
9
|
from uuid_utils.compat import uuid7
|
|
10
10
|
|
|
11
|
+
from buz.metadata import Metadata
|
|
12
|
+
|
|
11
13
|
|
|
12
14
|
@dataclass(frozen=True)
|
|
13
15
|
class Message(ABC):
|
|
@@ -17,7 +19,7 @@ class Message(ABC):
|
|
|
17
19
|
created_at: str = field(
|
|
18
20
|
init=False, default_factory=lambda: datetime.strftime(datetime.now(), Message.DATE_TIME_FORMAT)
|
|
19
21
|
)
|
|
20
|
-
metadata:
|
|
22
|
+
metadata: Metadata = field(init=False, default_factory=lambda: Metadata())
|
|
21
23
|
|
|
22
24
|
@classmethod
|
|
23
25
|
def fqn(cls) -> str:
|
|
@@ -27,7 +29,8 @@ class Message(ABC):
|
|
|
27
29
|
def restore(cls, **kwargs: Any) -> Self:
|
|
28
30
|
message_id = kwargs.pop("id")
|
|
29
31
|
created_at = kwargs.pop("created_at")
|
|
30
|
-
|
|
32
|
+
metadata_kwargs = kwargs.pop("metadata", None) or {}
|
|
33
|
+
metadata = Metadata(**metadata_kwargs)
|
|
31
34
|
|
|
32
35
|
instance = cls.__from_dict(kwargs) # type: ignore
|
|
33
36
|
|
|
@@ -65,11 +68,5 @@ class Message(ABC):
|
|
|
65
68
|
def parsed_created_at(self) -> datetime:
|
|
66
69
|
return datetime.strptime(self.created_at, self.DATE_TIME_FORMAT)
|
|
67
70
|
|
|
68
|
-
def add_metadata(self, metadata:
|
|
69
|
-
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if self.metadata is None:
|
|
73
|
-
object.__setattr__(self, "metadata", metadata)
|
|
74
|
-
else:
|
|
75
|
-
self.metadata.update(metadata)
|
|
71
|
+
def add_metadata(self, metadata: Metadata) -> None:
|
|
72
|
+
self.metadata.update(metadata)
|
buz/metadata.py
ADDED
|
@@ -27,10 +27,10 @@ buz/command/synchronous/synced_async/synced_async_command_bus.py,sha256=8tvD1zR8
|
|
|
27
27
|
buz/event/__init__.py,sha256=ey3c3fY85XpcWFlmIlbpanJfxv1BZI42Ia1njAtjcEs,588
|
|
28
28
|
buz/event/async_consumer.py,sha256=k6v_WqQ8A8vWJzO_sMcjU75mroA_Il9D-rE-E-pu_lM,200
|
|
29
29
|
buz/event/async_event_bus.py,sha256=l627YtPplBprVO0Ccepgt4hkwtMJyI8uaqx6TzCQ9Lw,430
|
|
30
|
-
buz/event/async_subscriber.py,sha256=
|
|
30
|
+
buz/event/async_subscriber.py,sha256=FNW5qtPlImcw2i7Ic1VcSpeai0RyPFAx4yRUn_NmpwQ,357
|
|
31
31
|
buz/event/async_worker.py,sha256=OR7g6cYWOWTh9DbfAfWwS6U6bZ1CDzScJHfH52PYj_k,881
|
|
32
|
-
buz/event/base_async_subscriber.py,sha256=
|
|
33
|
-
buz/event/base_subscriber.py,sha256=
|
|
32
|
+
buz/event/base_async_subscriber.py,sha256=66qxsFgBSSc4-dG0YsjkvYFFKOOIDA9nP8NuZ7kN2tw,362
|
|
33
|
+
buz/event/base_subscriber.py,sha256=78gCjxcCBpPTvnr9NJOERz4YwGGMaBDC2YElwKDlrAk,341
|
|
34
34
|
buz/event/consumer.py,sha256=Rf3ZtodM_637ifk5Y2CmEVQ7caYhBgXQ9gm7D57raP0,181
|
|
35
35
|
buz/event/dead_letter_queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
buz/event/dead_letter_queue/dlq_criteria.py,sha256=hxcV-BMayKTEc5suEfQZhEYkc14H7kZo_4YfDzcJTTY,290
|
|
@@ -85,8 +85,8 @@ buz/event/infrastructure/models/consuming_task.py,sha256=GJvn6fGTN5ZQJaOuQCX17JP
|
|
|
85
85
|
buz/event/infrastructure/models/delivery_context.py,sha256=D6_wppbYEkfoBgDaPeUaQPWFUMvZiHn-4QaAxDmWUZo,92
|
|
86
86
|
buz/event/infrastructure/models/execution_context.py,sha256=tohrJMSHWA5U7WByGE47LSjteAN8_IMyHoXtjyrHJMM,200
|
|
87
87
|
buz/event/infrastructure/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
-
buz/event/meta_base_subscriber.py,sha256=
|
|
89
|
-
buz/event/meta_subscriber.py,sha256=
|
|
88
|
+
buz/event/meta_base_subscriber.py,sha256=cqB-iDtN4iuAVBZs2UwrrrAVB2t-u1VvzZw1aSClkwg,817
|
|
89
|
+
buz/event/meta_subscriber.py,sha256=yH2_2OGqionoC86a3xc4K9kewiuNJs5UtiXdRAMViNM,451
|
|
90
90
|
buz/event/middleware/__init__.py,sha256=vbmskMeXurTSgwXqPsRQBydHhNAYnbEoqFc1pqemI7Y,897
|
|
91
91
|
buz/event/middleware/async_consume_middleware.py,sha256=n_EsDMNFgOIu7UVPGRC0iaxCIfGL-p_3xo5Avq43zYA,640
|
|
92
92
|
buz/event/middleware/async_consume_middleware_chain_resolver.py,sha256=dIiyob5TYavjcD5QL31_Yqya9x3ujWtL7cUZK4bEVvk,1459
|
|
@@ -115,20 +115,20 @@ buz/event/strategies/retry/consumed_event_retry_repository.py,sha256=Udls0pJEEXu
|
|
|
115
115
|
buz/event/strategies/retry/max_retries_consume_retrier.py,sha256=hY-DrAI8MRZKDUHraY2nSsQHcUo50jzLwBZrmvN3L5I,1743
|
|
116
116
|
buz/event/strategies/retry/max_retries_negative_exception.py,sha256=UdM5T4cxRv_at9GmNZXaE7Lcf6zX6jd7uaUAkBD9qvU,230
|
|
117
117
|
buz/event/strategies/retry/reject_callback.py,sha256=TnmUt0AkB2DEQMieec9TtB7IAkRHdFAFepAclbiCRns,316
|
|
118
|
-
buz/event/subscriber.py,sha256=
|
|
118
|
+
buz/event/subscriber.py,sha256=gY43QIaNCXm8vcNbtkgWJs_I8F7oMkGaC3HiawHPi70,346
|
|
119
119
|
buz/event/sync/__init__.py,sha256=uJmU80PGVNNL2HoRFXp4loQTn1VK8gLo-hMEvgVPpBQ,91
|
|
120
120
|
buz/event/sync/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
buz/event/sync/models/sync_delivery_context.py,sha256=LHjrS6gV-19NEKwtAXVmefjPd-Dsp_Ym8RZb84T3lm8,190
|
|
122
122
|
buz/event/sync/sync_event_bus.py,sha256=LTJHNKy8LrbygO343AA4Zt_hmgTP9uY6TLdjKs8LuHM,1821
|
|
123
123
|
buz/event/transactional_outbox/__init__.py,sha256=k8ZBWCi12pWKXchHfgW_Raw4sVR8XkBLuPNW9jB9X2k,1381
|
|
124
|
-
buz/event/transactional_outbox/event_to_outbox_record_translator.py,sha256=
|
|
124
|
+
buz/event/transactional_outbox/event_to_outbox_record_translator.py,sha256=d20JOeKIrCcpPEV66TzWiQmYqoyZGyL7J1ys0dUfHFs,615
|
|
125
125
|
buz/event/transactional_outbox/fqn_to_event_mapper.py,sha256=ujcq6CfYqRJtM8f3SEEltbWN0Ru7NM5JfrbNdh4nvhQ,773
|
|
126
126
|
buz/event/transactional_outbox/outbox_criteria/__init__.py,sha256=_9YjtbyYdqvDKEAwSQUyOn46Fc2pSNzTl2I7AqisEoc,594
|
|
127
127
|
buz/event/transactional_outbox/outbox_criteria/deliverable_records_outbox_criteria_factory.py,sha256=vnaf6OPBAiw78RJZ8iOtaISbvuDIj4gN31aR-5k3BL8,347
|
|
128
128
|
buz/event/transactional_outbox/outbox_criteria/outbox_criteria.py,sha256=HlD7tt3V-qVdPrq4H0idvyDnP7ncD0ZYQJ_XkwLNg-o,695
|
|
129
129
|
buz/event/transactional_outbox/outbox_criteria/outbox_criteria_factory.py,sha256=XvqOfd7coi2veXyAvAthIBYRxS0Gpfb70nnkq9igvVM,220
|
|
130
130
|
buz/event/transactional_outbox/outbox_criteria/outbox_sorting_criteria.py,sha256=-ckCLHvHlkuabI0TZ4Tw-qAQhU1hFLAgCOwuvIs_vpI,89
|
|
131
|
-
buz/event/transactional_outbox/outbox_record.py,sha256=
|
|
131
|
+
buz/event/transactional_outbox/outbox_record.py,sha256=0lK9cG0wmP-t9JD8erxtcFFH9VoqXclRox3VIp-iSo8,1203
|
|
132
132
|
buz/event/transactional_outbox/outbox_record_finder/__init__.py,sha256=HdW8GTIaxYExlUWeXugFmkRDyHcBiOlAVwh17dpPOfQ,344
|
|
133
133
|
buz/event/transactional_outbox/outbox_record_finder/outbox_record_stream_finder.py,sha256=RjCetETAggQ5arXI4Terpyvh7xfz0eXXZon2-C1gXgw,239
|
|
134
134
|
buz/event/transactional_outbox/outbox_record_finder/polling_outbox_record_stream_finder.py,sha256=qdCsqPQaS6cJ7li0veA2bY17iUG7fd84MzIywG7cPHw,1078
|
|
@@ -140,7 +140,7 @@ buz/event/transactional_outbox/outbox_record_validation/outbox_record_validation
|
|
|
140
140
|
buz/event/transactional_outbox/outbox_record_validation/outbox_record_validator.py,sha256=XGHTT1dH2CJOqhYYnyPJHmZsAuVXuDOeqgJzK7mRidc,328
|
|
141
141
|
buz/event/transactional_outbox/outbox_record_validation/size_outbox_record_validator.py,sha256=f8sQ5IHfO4J8m5l7rS3JYUoBvx0B1EAFMRsJ0HPQKG8,2436
|
|
142
142
|
buz/event/transactional_outbox/outbox_repository.py,sha256=Sn7aWaq1G6uiKXcV09l9L1eVQ_bPUTqY-OSD12_H2jU,628
|
|
143
|
-
buz/event/transactional_outbox/transactional_outbox_event_bus.py,sha256=
|
|
143
|
+
buz/event/transactional_outbox/transactional_outbox_event_bus.py,sha256=mrsqnITsZ0KZqY93YiEIrfrkzwcwGhEFaxwbQAM4asU,2530
|
|
144
144
|
buz/event/transactional_outbox/transactional_outbox_worker.py,sha256=x6kf-Oc4oYKu9S4MTcCqd3VqPNURScTReYJ3Ahx4rKA,2221
|
|
145
145
|
buz/event/worker.py,sha256=BL9TXB_kyr0Avql9fIcFm3CDNnXPvZB6O6BxVwjtCdA,942
|
|
146
146
|
buz/handler.py,sha256=W6jSTo5BNV9u9QKBaEMhLIa3tgQocd6oYEJf5K4EfEU,358
|
|
@@ -185,7 +185,7 @@ buz/kafka/infrastructure/deserializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
185
185
|
buz/kafka/infrastructure/deserializers/byte_deserializer.py,sha256=4fc6t-zvcFx6F5eoyEixH2uN0cM6aB0YRGwowIzz1RA,211
|
|
186
186
|
buz/kafka/infrastructure/deserializers/bytes_to_message_deserializer.py,sha256=r40yq67DIElPi6ClmElbtR3VGrG2grNwgwuflXWOh20,345
|
|
187
187
|
buz/kafka/infrastructure/deserializers/implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
-
buz/kafka/infrastructure/deserializers/implementations/cdc/cdc_record_bytes_to_event_deserializer.py,sha256=
|
|
188
|
+
buz/kafka/infrastructure/deserializers/implementations/cdc/cdc_record_bytes_to_event_deserializer.py,sha256=JwtO0K1uJ1RmCw1Dd8rspPGBI-S-9j08GfczPXnN00s,2196
|
|
189
189
|
buz/kafka/infrastructure/deserializers/implementations/cdc/not_valid_cdc_message_exception.py,sha256=hgLLwTcC-C2DuJSOWUhmQsrd1bO9I1469869IqfAPOk,414
|
|
190
190
|
buz/kafka/infrastructure/deserializers/implementations/json_byte_deserializer.py,sha256=L4b164-KweiQUwyRONhTMIGnAz48UPk0btLqjGOTNdk,373
|
|
191
191
|
buz/kafka/infrastructure/deserializers/implementations/json_bytes_to_message_deserializer.py,sha256=YwugXkmOudMNtkVfCC4BFe3pFVpbM8rAL9bT88bZMRk,756
|
|
@@ -200,8 +200,8 @@ buz/kafka/infrastructure/kafka_python/kafka_python_producer.py,sha256=DkqqLSSXHB
|
|
|
200
200
|
buz/kafka/infrastructure/kafka_python/translators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
201
|
buz/kafka/infrastructure/kafka_python/translators/consumer_initial_offset_position_translator.py,sha256=hJ48_eyMcnbFL_Y5TOiMbGXrQSryuKk9CvP59MdqNOY,620
|
|
202
202
|
buz/kafka/infrastructure/serializers/byte_serializer.py,sha256=T83sLdX9V5Oh1mzjRwHi_1DsTFI7KefFj7kmnz7JVy4,207
|
|
203
|
-
buz/kafka/infrastructure/serializers/implementations/cdc_record_bytes_to_event_serializer.py,sha256=
|
|
204
|
-
buz/kafka/infrastructure/serializers/implementations/json_byte_serializer.py,sha256=
|
|
203
|
+
buz/kafka/infrastructure/serializers/implementations/cdc_record_bytes_to_event_serializer.py,sha256=w75PNn3rsi-eUpsvzCHwirWU7FvMKF74FfoGINbqxA4,1819
|
|
204
|
+
buz/kafka/infrastructure/serializers/implementations/json_byte_serializer.py,sha256=yCPlZ-TNoF5Jh0WUlhseC8rTnHk-IJgmAHmU58ninyA,1523
|
|
205
205
|
buz/kafka/infrastructure/serializers/kafka_header_serializer.py,sha256=ws9xr5lsJF6J-uVIplPym7vboo00KtXHfLJf8JjG0lo,649
|
|
206
206
|
buz/locator/__init__.py,sha256=my8qfHL5htIT9RFFjzV4zGIPVW72tu4SMQbKKqBeSKo,293
|
|
207
207
|
buz/locator/handler_fqn_not_found_exception.py,sha256=HfQb8gwqEpG1YfOc_IQlSCjRg0Ete0Aj_z3s7GPC-RM,206
|
|
@@ -216,7 +216,8 @@ buz/locator/sync/__init__.py,sha256=OljGqPXBPuxHzWcn-tQ0P-ObLRHbhoCmmXhsSIgVxJM,
|
|
|
216
216
|
buz/locator/sync/handler_already_registered_exception.py,sha256=7DAnkGD97OIC9gc7604dTMBtVUl8KereUvTMicK7FD0,245
|
|
217
217
|
buz/locator/sync/handler_not_registered_exception.py,sha256=cYKtKET1fHXaMvbBFJNLtvNF6-yp8pixUV62_CdTS54,234
|
|
218
218
|
buz/locator/sync/instance_locator.py,sha256=HGQ6uRIwrTruhax2i8L6clfJUywgHCHC3k2rwYqjApo,2076
|
|
219
|
-
buz/message.py,sha256=
|
|
219
|
+
buz/message.py,sha256=d9CMiVSlQVX7xXHi60NSHwqd9cLFoulKIlmlBqLqzaA,2779
|
|
220
|
+
buz/metadata.py,sha256=F0-zp_6Tplr2L3euZtuZR3jZ1qb2mW0X99I5ZvQE9Yg,250
|
|
220
221
|
buz/middleware/__init__.py,sha256=ndg9oGa4p8zOYC3i0nikfmSe3Ny5ug9RBwb9vZ7YhKM,176
|
|
221
222
|
buz/middleware/middleware.py,sha256=XNSlfSTyBAfHzvuFrjM0IOVtz35lP_f-xWbkfdMYltA,54
|
|
222
223
|
buz/middleware/middleware_chain_builder.py,sha256=D9zl5XSF5P65QpnPcbtyFaaVHqBTb6hX75aKI7CtiPU,1010
|
|
@@ -257,7 +258,7 @@ buz/serializer/message_to_json_bytes_serializer.py,sha256=RGZJ64t4t4Pz2FCASZZCv-
|
|
|
257
258
|
buz/wrapper/__init__.py,sha256=GnRdJFcncn-qp0hzDG9dBHLmTJSbHFVjE_yr-MdW_n4,77
|
|
258
259
|
buz/wrapper/async_to_sync.py,sha256=OfK-vrVUhuN-LLLvekLdMbQYtH0ue5lfbvuasj6ovMI,698
|
|
259
260
|
buz/wrapper/event_loop.py,sha256=pfBJ1g-8A2a3YgW8Gf9Fg0kkewoh3-wgTy2KIFDyfHk,266
|
|
260
|
-
buz-2.17.
|
|
261
|
-
buz-2.17.
|
|
262
|
-
buz-2.17.
|
|
263
|
-
buz-2.17.
|
|
261
|
+
buz-2.17.0rc3.dist-info/LICENSE,sha256=jcLgcIIVaBqaZNwe0kzGWSU99YgwMcI0IGv142wkYSM,1062
|
|
262
|
+
buz-2.17.0rc3.dist-info/METADATA,sha256=q-UNL9YxgQJcky0-LkcEHl6_WBCiYSdU5fkPLFiUxBk,12682
|
|
263
|
+
buz-2.17.0rc3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
264
|
+
buz-2.17.0rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|