show/hide this revision's text 4 Tried to make it clear that the client implements the interface in the example.

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.

show/hide this revision's text 3 added 1 characters in body

Another 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 that, you cannot do it without breaking all the client code, so you en end up with:

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 your code without forcing everyone that uses your code to consume your changes immediately.

show/hide this revision's text 2 added 15 characters in body

Another 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 that, you cannot do it without breaking all the client code, so you en up with:

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 your code without forcing everyone that uses your code to consume your changes immediately.

    Post Made Community Wiki by Community
show/hide this revision's text 1