You are given an array of events, where each event is represented as an object or a tuple with a start time and an end time (both integers). The times indicate when an event begins and ends. Your task is to write a function that calculates the maximum number of events that overlap at any given time and returns:
For example, given the following events:
The maximum overlap is 2 between time 2 and 4.
You may assume that the events are not guaranteed to be in any particular order. Consider edge cases such as events that share a boundary time (for instance, one event ending exactly when another starts). Design and implement an efficient solution.
Write code in the programming language of your choice.