Package org.objectweb.howl.log
Interface LogBufferStatus
interface LogBufferStatus
Defines valid values for LogBuffer status.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
IO Status of LogBuffer when force is complete (2).static final int
IO Status of LogBuffer if an IOException occurs during the force (3).static final int
IO Status of LogBuffer while it is being filled with new records (0).static final int
IO Status of LogBuffer while it is being forced (1).
-
Field Details
-
FILLING
static final int FILLINGIO Status of LogBuffer while it is being filled with new records (0).- See Also:
-
WRITING
static final int WRITINGIO Status of LogBuffer while it is being forced (1).- See Also:
-
COMPLETE
static final int COMPLETEIO Status of LogBuffer when force is complete (2).Threads waiting for a force may be notified when status is COMPLETE.
- See Also:
-
ERROR
static final int ERRORIO Status of LogBuffer if an IOException occurs during the force (3).Threads waiting for a force must receive an IOException if an error occurs during force.
- See Also:
-