bboggs-streambit
bboggs-streambit
@marcosschroh, do you ultimately want to make the return type of `serialize` and `deserialize` this `Event` type? Or should it be configurable? Is the `data` the full Kafka message? Or...
@marcosschroh, what do you think of a `@singledispatchmethod` implementation for `serialize`? The actual method implementations could basically stay the same, you'd just have a single entry point to either one...
@marcosschroh, I've just about got an initial PR ready. Are you wanting to just start a new release branch for v3? Or do you want to incrementally release the new...
@cristianmatache @wbarnha , Since `on_key_del` is implemented for `Table` (https://github.com/faust-streaming/faust/blob/master/faust/tables/table.py#L86-L94) Could we simply (naively) implement this in terms of `__delitem__`?, e.g. something like, in `Table` define ```python def on_clear(self): for...