Interface LogBufferStatus


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

      Fields 
      Modifier and Type Field Description
      static int COMPLETE
      IO Status of LogBuffer when force is complete (2).
      static int ERROR
      IO Status of LogBuffer if an IOException occurs during the force (3).
      static int FILLING
      IO Status of LogBuffer while it is being filled with new records (0).
      static int WRITING
      IO Status of LogBuffer while it is being forced (1).
    • Field Detail

      • FILLING

        static final int FILLING
        IO Status of LogBuffer while it is being filled with new records (0).
        See Also:
        Constant Field Values
      • WRITING

        static final int WRITING
        IO Status of LogBuffer while it is being forced (1).
        See Also:
        Constant Field Values
      • 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:
        Constant Field Values
      • 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:
        Constant Field Values