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
| *.class | |
| # Mobile Tools for Java (J2ME) | |
| .mtj.tmp/ | |
| # Package Files # | |
| *.jar | |
| *.war | |
| *.ear |
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 Batcher { | |
| static class Flusher implements Runnable { | |
| private ConcurrentLinkedQueue<Events.Event> queu = new ConcurrentLinkedQueue<>(); | |
| @Override | |
| public void run() { | |
| // Flush with defined interval or with special rules | |
| } | |
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
| package fte.tests.chronicle; | |
| import com.cognitect.transit.Reader; | |
| import com.cognitect.transit.TransitFactory; | |
| import com.cognitect.transit.Writer; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.fasterxml.jackson.datatype.guava.GuavaModule; | |
| import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; | |
| import net.openhft.chronicle.Chronicle; | |
| import net.openhft.chronicle.ChronicleQueueBuilder; |
NewerOlder