Class AbstractJournalRM.CollectorDaemon.InvokeGCJournalFile

java.lang.Object
com.tangosol.io.journal.AbstractJournalRM.JournalFile
com.tangosol.io.journal.AbstractJournalRM.CollectorDaemon.InvokeGCJournalFile
All Implemented Interfaces:
Disposable, AutoCloseable
Enclosing class:
AbstractJournalRM.CollectorDaemon

protected class AbstractJournalRM.CollectorDaemon.InvokeGCJournalFile extends AbstractJournalRM.JournalFile
A AbstractJournalRM.JournalFile implementation returned when the journal has consumed all known capacity. This implementation triggers an exhaustive evacuation ensuring data structures are compact thus any released memory is reclaimed.
  • Constructor Details

    • InvokeGCJournalFile

      public InvokeGCJournalFile()
      Construct a Journal File.
  • Method Details

    • enqueue

      public long enqueue(Binary bin)
      Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.
      Specified by:
      enqueue in class AbstractJournalRM.JournalFile
      Parameters:
      bin - the value to append to the journal file
      Returns:
      a ticket if the Binary has successfully been enqueued, or 0L if the file is full
    • read

      public Binary read(long lTicket)
      Read the Binary associated with the specified ticket from the journal file.
      Specified by:
      read in class AbstractJournalRM.JournalFile
      Parameters:
      lTicket - a ticket previously returned from AbstractJournalRM.JournalFile.enqueue(com.tangosol.util.Binary)
      Returns:
      the Binary value that is associated with the ticket
    • dispose

      public void dispose()
      Invoked when all resources owned by the implementer can safely be released.

      Once disposed of the object should no longer be considered to be usable.

      Note the Disposable interface is compatible with try-with-resources which will automatically invoke this method.

      Specified by:
      dispose in interface Disposable
      Specified by:
      dispose in class AbstractJournalRM.JournalFile