public interface SnifferDataListener
Modifier and Type | Method and Description |
---|---|
void |
messagesDeleted(int firstRow,
int lastRow)
Report that a block of messages has been deleted at the following range
of indexes.
|
void |
messagesInserted(int firstRow,
int lastRow)
Report that a block of messages has been inserted at the following range
of indexes.
|
void |
scheduleToGuiThread(java.lang.Runnable r)
Schedule a short-running operation that should only occur on the GUI dispatch
thread (however the implementing GUI chooses to do it).
|
void messagesDeleted(int firstRow, int lastRow)
firstRow
- zero-based index of first messagelastRow
- zero-based index of last messagevoid messagesInserted(int firstRow, int lastRow)
firstRow
- zero-based index of first messagelastRow
- zero-based index of last messagevoid scheduleToGuiThread(java.lang.Runnable r)
r
- Runnable to be scheduled as soon as possible on the GUI thread