com.lutris.util
Class OutputStreamEventQueueEntry

java.lang.Object
com.lutris.util.OutputStreamEventQueueEntry
- public class OutputStreamEventQueueEntry
- extends java.lang.Object
This is a helper class for OutputStreamEventQueue. It describes one
event (one call to write()). Only the OutputStreamEventQueue should
create instances of this class.
|
Field Summary |
byte[] |
data
The data. |
java.util.Date |
when
The time when the event was created (when write() was called). |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
when
public java.util.Date when
- The time when the event was created (when write() was called).
data
public byte[] data
- The data. This is what was written by the write() call.
OutputStreamEventQueueEntry
protected OutputStreamEventQueueEntry()
- Only the OutputStreamEventQueue should create instances of this class.
OutputStreamEventQueueEntry
protected OutputStreamEventQueueEntry(java.util.Date when,
byte[] data)
- Only the OutputStreamEventQueue should create instances of this class.