Package com.tangosol.io.journal
Class RamJournalRM.JournalImpl
java.lang.Object
com.tangosol.io.journal.AbstractJournalRM.JournalImpl
com.tangosol.io.journal.RamJournalRM.JournalImpl
- All Implemented Interfaces:
Disposable
,Journal
,AutoCloseable
- Enclosing class:
RamJournalRM
A Journal implementation managed by this Journal Resource Manager.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.tangosol.io.journal.Journal
Journal.JournalConsumer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected RuntimeException
Return a RuntimeException indicating the Journal is out of capacity.read
(long lTicket) Using a ticket returned from a previous call toJournal.write(com.tangosol.util.Binary)
, read the Binary value that was written to the Journal.int
release
(long lTicket) Notify the Journal that the value corresponding to the specified ticket is no longer needed.protected long
writeOverflow
(Binary bin) Handle the case in which the write overflows the capacity of the journal.Methods inherited from class com.tangosol.io.journal.AbstractJournalRM.JournalImpl
dispose, getConsumer, setConsumer, toString, write
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.oracle.coherence.common.base.Disposable
close
-
Constructor Details
-
JournalImpl
protected JournalImpl()
-
-
Method Details
-
read
Using a ticket returned from a previous call toJournal.write(com.tangosol.util.Binary)
, read the Binary value that was written to the Journal.- Specified by:
read
in interfaceJournal
- Overrides:
read
in classAbstractJournalRM.JournalImpl
- Parameters:
lTicket
- a ticket returned from a previous call toJournal.write(com.tangosol.util.Binary)
- Returns:
- the Binary value that was previously written
-
release
public int release(long lTicket) Notify the Journal that the value corresponding to the specified ticket is no longer needed.- Specified by:
release
in interfaceJournal
- Overrides:
release
in classAbstractJournalRM.JournalImpl
- Parameters:
lTicket
- a ticket returned from a previous call toJournal.write(com.tangosol.util.Binary)
- Returns:
- the number of bytes released
-
writeOverflow
Handle the case in which the write overflows the capacity of the journal.- Overrides:
writeOverflow
in classAbstractJournalRM.JournalImpl
- Parameters:
bin
- the Binary to write- Returns:
- a ticket
-
instantiateJournalFullException
Return a RuntimeException indicating the Journal is out of capacity.- Overrides:
instantiateJournalFullException
in classAbstractJournalRM.JournalImpl
- Returns:
- a RuntimeException indicating the Journal is out of capacity
-