Interface LogBufferStatus


interface LogBufferStatus
Defines valid values for LogBuffer status.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static 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 FILLING
      IO Status of LogBuffer while it is being filled with new records (0).
      See Also:
    • WRITING

      static final int WRITING
      IO Status of LogBuffer while it is being forced (1).
      See Also:
    • COMPLETE

      static final int COMPLETE
      IO 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 ERROR
      IO 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: