You are tasked with implementing a rate limiter that controls the number of requests a user can make within a given time window. The rate limiter should support the following requirements:
Define the interface for your rate limiter, implement the functionality, and demonstrate its correctness with sample inputs that simulate users making requests. Think about edge cases (such as burst requests at the window boundary) and ensure your solution handles them appropriately.
Feel free to use any programming language of your choice.