Summary: This saved the state of the network plugin even when switching between plugins using persistedState. A bug in the Android implementation didn't clear the events that were already sent to the desktop. Reviewed By: jknoxville Differential Revision: D8752098 fbshipit-source-id: 152ec5da83958ad8124686f780d39983cbce563f
36 lines
666 B
Java
36 lines
666 B
Java
/*
|
|
* Copyright (c) 2018-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
* file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
package com.facebook.sonar.plugins.common;
|
|
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
|
|
final class RingBuffer<T> {
|
|
final int mBufferSize;
|
|
final List<T> mBuffer = new LinkedList<>();
|
|
|
|
RingBuffer(int bufferSize) {
|
|
mBufferSize = bufferSize;
|
|
}
|
|
|
|
void enqueue(T item) {
|
|
if (mBuffer.size() >= mBufferSize) {
|
|
mBuffer.remove(0);
|
|
}
|
|
mBuffer.add(item);
|
|
}
|
|
|
|
void clear() {
|
|
mBuffer.clear();
|
|
}
|
|
|
|
List<T> asList() {
|
|
return mBuffer;
|
|
}
|
|
}
|