// Buffer.java
/*
 Holds the transactions for the worker
 threads.
*/
class Buffer {
    
    public static final int SIZE = 64;
    
    // YOUR CODE HERE

}
