dcapwell commented on code in PR #3954: URL: https://github.com/apache/cassandra/pull/3954#discussion_r1982388348
########## src/java/org/apache/cassandra/io/IVersionedSerializer.java: ########## @@ -17,6 +17,34 @@ */ package org.apache.cassandra.io; +import java.io.IOException; + +import org.apache.cassandra.io.util.DataInputPlus; +import org.apache.cassandra.io.util.DataOutputPlus; + public interface IVersionedSerializer<T> extends IVersionedAsymmetricSerializer<T, T> { + static <T> IVersionedSerializer<T> fromSerializer(Serializer<T> delegate) Review Comment: TODO: this API isn't consistent, should look closer to make sure the APIs match for each interface -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org