Skip to content

Instantly share code, notes, and snippets.

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];