Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public class Materialized {

	// new methods
    public static <K, V, S extends StateStore> Materialized<K, V, S> as(final StoreTypeSpecDslStorePlugin typeSpecstorePlugin);
    public Materialized<K, V, S> withStoreTypeSpecwithStorePlugin(final StoreTypeSpecDslStorePlugin typeSpecstorePlugin);

	// deprecate old methods
	@Deprecated
    public static <K, V, S extends StateStore> Materialized<K, V, S> as(final StoreType storeType);
	@Deprecated
    public Materialized<K, V, S> withStoreType(final StoreType storeType); 
}

...