TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.25k stars 272 forks source link

Remove `Core` variants of various types #510

Open antiguru opened 1 year ago

antiguru commented 1 year ago

We added several Core variants of types to support different container types. For example, Stream<G, D> is really a StreamCore<G, Vec<D>>. We should remove the Core variants and make them the default instead.

This is a breaking change, but it seems we have sufficient experience with the container abstraction that we can make the container type with its contents to the default stream element.

The following types need to be adjusted: