Created
April 28, 2015 04:06
-
-
Save mikeb01/b5d6a2625f63e8adb926 to your computer and use it in GitHub Desktop.
This file contains 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
RingBuffer<ValueEvent<String>> ringBuffer = new RingBuffer<>(...); | |
String data = "ABC"; | |
ringBuffer.publishEvent((event, seq, arg) -> event.set(arg), data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment