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
| <div class="scroll"> | |
| <table class="striped"> | |
| <tbody> | |
| <tr><td>Row 1</td></tr> | |
| <tr><td>Row 2</td></tr> | |
| <tr><td>Row 3</td></tr> | |
| <tr><td>Row 4<br>With an extra line</td></tr> | |
| <tr><td>Row 5</td></tr> | |
| <tr class="filler"><td></td></tr> | |
| </tbody> |
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
| (function($) { | |
| var longPollUrl = '/longpoll'; | |
| var lastReceivedSequence; | |
| function poll() { | |
| $.ajax(longPollUrl, { | |
| data: { 'lastSequence': lastReceivedSequence }, | |
| dataType: 'json', | |
| timeout: 15000, |
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
| import com.lmax.disruptor.RingBuffer; | |
| import com.lmax.disruptor.dsl.Disruptor; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| public class BackgroundLogger | |
| { | |
| private static final int ENTRIES = 64; |
NewerOlder