This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class RingBuffer { | |
| private final Object[] data; | |
| private int freeIndex = 0; | |
| private int currentIndex = 0; | |
| private int size = 0; | |
| public RingBuffer(int maxBufferSize) { | |
| data = new Object[maxBufferSize]; |