Click here to Skip to main content
15,867,328 members
Articles / Programming Languages / C#

Public API Events and Breaking Changes

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
14 Nov 2020CPOL6 min read 8.8K   6   7
Understanding breaking changes caused by event changes and how to avoid them.
This article presents many different ways in which an event can be declared, and shows which ones are most prone to cause breaking changes if the arguments ever change, as well as which ones will not break when those changes happen.

Introduction

When writing public APIs, one of the things we must take into consideration are possible breaking-changes in the future and, by default, we must avoid them.

This is easier said that done, but the thing is: There are some techniques that can help us at least reduce the amount of breaking changes we will cause if things change in the future.

For this article, I am focusing on breaking changes that happens because events changed.

So, let's see a possible situation:

ConnectionLost Event

For this fictional situation, we have Connection objects that, among all the things they do, can also notify when a connection is lost. This is achieved by an event, obviously named ConnectionLost. As this is the V1 of the API, there is no information on why the connection is lost and, even if there is a recommended practice for events, I see that people declare events in very different manners, and following are some of those:

C#
// 1.
public event Action ConnectionLost;

// 2.
public event Action<object> ConnectionLost;
// object is the Connection that fires this event.

// 3.
public event EventHandler ConnectionLost;

// 4.
public class ConnectionLostEventArgs: EventHandler {}
public event EventHandler<ConnectionLostEventArgs> ConnectionLost;

// 5.
public struct ConnectionLostEventArgs {}
public event Action<ConnectionLostEventArgs> ConnectionLost;

// 6.
public delegate void ConnectionLostEventHandler(object sender, EventArgs e);
public event ConnectionLostEventHandler ConnectionLost;

// 7.
public delegate void ConnectionLostEventHandler(Connection connection, EventArgs e);
public event ConnectionLostEventHandler ConnectionLost;

I could go on with the alternatives. I could also try to focus on the pros and cons of each one of the declarations assuming just a single version of the API would exist.

Yet, this article is about possible breaking changes, so let's say the common problem is that ConnectionLost is not giving any information on why the connection was lost.

So, for the V2 of the API, we want to add that information.

For simplicity, let's say ErrorCode is an int (and that's all the V2 is going to provide).

The natural evolution of the previously presented approaches would be:

C#
// 1.
public event Action<int> ConnectionLost;
// int is the error code.

// 2.
public event Action<object, int> ConnectionLost;
// object is the Connection that fires this event.
// int is the error code.

// 3 and 4 become the same
public class ConnectionLostEventArgs:
  EventHandler
{
  public int ErrorCode { get; init; }
}

public event EventHandler<ConnectionLostEventArgs> ConnectionLost;

// 5.
public struct ConnectionLostEventArgs
{
  public int ErrorCode { get; init; }
}

public event Action<ConnectionLostEventArgs> ConnectionLost;

// 6.
public class ConnectionLostEventArgs:
  EventHandler
{
  public int ErrorCode { get; init; }
}

public delegate void
  ConnectionLostEventHandler(object sender, ConnectionLostEventArgs e);

public event ConnectionLostEventHandler ConnectionLost;

// 7.
public class ConnectionLostEventArgs:
  EventHandler
{
  public int ErrorCode { get; init; }
}

public delegate void
  ConnectionLostEventHandler(Connection connection, ConnectionLostEventArgs e);

public event ConnectionLostEventHandler ConnectionLost;

I know this became a little too verbose as I repeated ConnectionLostEventArgs declaration on every item that used it.

Yet, what is really important here is that, if the developers that use our API are going to recompile their code using our new API, then:

  • Options 1 and 2 are definitely breaking changes. Any method that has the wrong number of arguments is not going to work.
  • Option 3 might be a breaking change. As long as registrations don't use the delegate type, being connection.ConnectionLost += Method; or similar, they are going to work. But if we had a variable of type EventHandler, well, EventHandler and EventHandler<ConnectionLostEventArgs> are not compatible types, even though the actual method they point is.
  • Options 4 to 7 are safe from breaking changes. The event type did not change at all and, even though the ConnectionLostEventHandler is now receiving a ConnectionLostEventArgs instead of just an EventArgs, this only breaks the code firing the event, forcing all the callers to pass the proper object, but the signature of the event is still compatible to the existing handlers with no issue.

Also, if instead of recompiling the code, users are just replacing an old library by a new one and rerunning the app, then option 3 becomes always a breaking change, because it doesn't matter how we register our events in code (with explicit types or implicit ones), the actual event type is always part of the binary signature.

The Recommended Practice and the Problem

I said before that there is a recommended practice, yet I decided to show many different options. I am sure the first options might look off because they don't follow the standard and are clearly broken, while the last options seem to require too many types to be declared ahead of time. So, why not just stick to the recommended practice?

Well... because the recommended practice is probably going to be option 3, which is going to cause breaking changes. There might be situations that it will not (users just used += Method and -= Method, never wrote the EventHandler type and recompiled the code) but, as a rule of "is this a breaking change", using option 3 is bad. Yet, it is recommended because it was meant to allow events to evolve without causing breaking changes. That's why we have that "useless" EventArgs to start with. So, what's really happening?

I can only guess, and my guess is that the entire idea was to always have specific delegate types if we ever expected to have arguments, and still pass that "dummy" args for events we never planned to have args. That dummy args is a "safety feature" if we actually end-up requiring arguments later (even though we never planned them). But, instead of changing the signature of the event handler, we would keep them as EventHandler, but would pass our sub-class instance as argument, and any user that actually wanted the new args would need to cast it to the right type.

That works, but then we have a "newer API" that uses less specific types "just because it started wrong". I understand that breaking changes are bad, but having to keep an API "always wrong" just because we didn't anticipate an argument in an event is also bad. In fact, the use of casts is many times considered a bad practice, and that is the only way to pass arguments to an EventHandler event without causing breaking changes (and without having to create a new event like ConnectionLostWithErrorCode).

What's the Right Solution?

I would love to say that there is a perfect solution but, right now, there isn't.

Considering that writing ConnectionLostEventHandler is much simpler than EventHandler<ConnectionLostEventArgs>, that option seems to be the most elegant (and available since .NET 1). Yet, I don't like that when I need the args object, I will end-up with 2 new types for a single event.

So, always creating an event args and then using EventHandler<ArgsType> seems the safest bet to support future changes. It still has some excessive type creation, but is less than declaring a new delegate type every time.

But I wouldn't say that's the best option in all cases. That object sender in EventHandler (and its generic version) is terrible if we are dealing with object decoration (we might get the non-decorated sender instead of the decorated one) and it forces the use of casts which, again, is usually seen as a bad practice. Also, the inheritance of EventArgs means that if we can't store all the possible args that will be instantiated ahead of time, we will be allocating new objects that need to be collected all the time. That's why one of my examples was an Action<ConnectionLostEventArgs>. For that example, the args type is actually a struct, not a class, and the memory allocation can be avoided. Probably not a big problem for a ConnectionLost event, as it shouldn't be happening all the time, but can make a huge difference in events fired when animating objects or similar.

All in all, I will just say: Avoid EventHandler as your "basic" event-handler type in public APIs if you believe there is a minimum chance real arguments are ever going to be needed.

History

  • 14th November, 2020: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Microsoft
United States United States
I started to program computers when I was 11 years old, as a hobbyist, programming in AMOS Basic and Blitz Basic for Amiga.
At 12 I had my first try with assembler, but it was too difficult at the time. Then, in the same year, I learned C and, after learning C, I was finally able to learn assembler (for Motorola 680x0).
Not sure, but probably between 12 and 13, I started to learn C++. I always programmed "in an object oriented way", but using function pointers instead of virtual methods.

At 15 I started to learn Pascal at school and to use Delphi. At 16 I started my first internship (using Delphi). At 18 I started to work professionally using C++ and since then I've developed my programming skills as a professional developer in C++ and C#, generally creating libraries that help other developers do their work easier, faster and with less errors.

Want more info or simply want to contact me?
Take a look at: http://paulozemek.azurewebsites.net/
Or e-mail me at: paulozemek@outlook.com

Codeproject MVP 2012, 2015 & 2016
Microsoft MVP 2013-2014 (in October 2014 I started working at Microsoft, so I can't be a Microsoft MVP anymore).

Comments and Discussions

 
SuggestionOnly one good answer Pin
Greg Utas7-Dec-20 6:04
professionalGreg Utas7-Dec-20 6:04 
GeneralRe: Only one good answer Pin
Paulo Zemek11-Dec-20 12:25
mvaPaulo Zemek11-Dec-20 12:25 
GeneralRe: Only one good answer Pin
Greg Utas11-Dec-20 12:46
professionalGreg Utas11-Dec-20 12:46 
GeneralRe: Only one good answer Pin
Paulo Zemek11-Dec-20 12:55
mvaPaulo Zemek11-Dec-20 12:55 
GeneralRe: Only one good answer Pin
Greg Utas11-Dec-20 13:52
professionalGreg Utas11-Dec-20 13:52 
GeneralRe: Only one good answer Pin
Paulo Zemek11-Dec-20 14:32
mvaPaulo Zemek11-Dec-20 14:32 
PraiseAPI change utility Pin
RickZeeland14-Nov-20 23:34
mveRickZeeland14-Nov-20 23:34 
QuestionMessage Closed Pin
14-Nov-20 6:47
Member 1492041914-Nov-20 6:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.