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
protected class RamJournalRM.JournalImpl extends AbstractJournalRM.JournalImpl
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 Modifier Constructor Description protected
JournalImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected RuntimeException
instantiateJournalFullException()
Return a RuntimeException indicating the Journal is out of capacity.Binary
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
-
-
-
-
Method Detail
-
read
public Binary 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.- 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
protected long writeOverflow(Binary bin)
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
protected RuntimeException 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
-
-