Another
A big headache with interfaces in java and C# is that they give you so few options to evolve your contract. E.g.:
interface ILogSink {
Log(DateTime timestamp, string message);
}
If in the next version you want to change have a lot of different clients that , all implement this interface you cannot do change it without breaking all their implementation. If you need to change it in the client codenext version, so you end up with something like:
interface ILogSinkVersion2 {
Log(DateTime timestamp, string message, CultureInfo culture);
}
If you use a base class on the other hand, you can start out with:
class LogSink {
void Log(DateTime timestamp, string message, CultureInfo culture);
}
And evolve it to:
class LogSink {
[Obsolete("Please Log(DateTime, string, CultureInfo)")]
virtual void Log(DateTime timestamp, string message) {
}
virtual void Log(DateTime timestamp, string message, CultureInfo culture) {
// Call old method for old implementations:
Log(timestamp, message);
}
}
This way you can fix evolve your code without forcing everyone that uses your code every implementation of the contract to consume your changes immediately.
