The context Package

Let’s learn about the Context type and the context package.

Purpose of the context package

The main purpose of the context package is to define the Context type and support cancellation. Yes, you heard that right; there are times when, for some reason, we want to abandon what we are doing. However, it would be very helpful to be able to include some extra information about our cancellation decisions. The context package allows us to do exactly that.

If we take a look at the source code of the context package, we will realize that its implementation is pretty simple—even the implementation of the Context type is pretty simple, yet the context package is very important.

The Context type is an interface with four methods named Deadline(), Done(), Err(), and Value(). The good news is that we do not need to implement all of these functions of the Context interface—we just ...