Uses of Class
com.jalios.jstore.Stamp
-
Packages that use Stamp Package Description com.jalios.jcms Contains the core JPlatform classes.com.jalios.jcms.deserializer com.jalios.jcms.handler Contains the javabean classes uses to process HTTP request (aka form handlers).com.jalios.jcms.tools.storemerge com.jalios.jstore Contains JStore core classes.com.jalios.jstore.jsync Contains JSync core classes. -
-
Uses of Stamp in com.jalios.jcms
Fields in com.jalios.jcms declared as Stamp Modifier and Type Field Description protected Stamp
JcmsCleanFilter. beginStamp
protected Stamp
JcmsCleanFilter. endStamp
Methods in com.jalios.jcms that return Stamp Modifier and Type Method Description Stamp
StoreInfo. getProgressStamp()
Methods in com.jalios.jcms with parameters of type Stamp Modifier and Type Method Description void
JcmsCleanFilter. setBeginStamp(Stamp startStamp)
void
JcmsCleanFilter. setEndStamp(Stamp endStamp)
-
Uses of Stamp in com.jalios.jcms.deserializer
Methods in com.jalios.jcms.deserializer that return Stamp Modifier and Type Method Description Stamp
StampDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
-
Uses of Stamp in com.jalios.jcms.handler
Methods in com.jalios.jcms.handler that return Stamp Modifier and Type Method Description Stamp
StoreCleanerHandler. getAvailableBeginMilestone()
Stamp
StoreCleanerHandler. getAvailableBeginStamp()
Stamp
StoreCleanerHandler. getAvailableEndMilestone()
Stamp
StoreCleanerHandler. getAvailableEndStamp()
-
Uses of Stamp in com.jalios.jcms.tools.storemerge
Fields in com.jalios.jcms.tools.storemerge declared as Stamp Modifier and Type Field Description Stamp
StoreMergeParameters. gcs
-
Uses of Stamp in com.jalios.jstore
Methods in com.jalios.jstore that return Stamp Modifier and Type Method Description static Stamp
StoreUtil. findGCS(java.util.List<StorableLogEntry> opList, StampTable minPT, Stamp minUnknownStamp)
Find the GCS (Greatest Common Stamp) in the given list of operations according the given stampTable.static Stamp
StoreUtil. findMinStamp(java.util.Collection<StampTable> stampTables, java.lang.String urid)
Find the minimal stamp for a given urid in a collection of StampTableStamp
StampTable. getBehindStamp(StampTable st)
Gets the most behind stamp of this StampTable according the given StampTable.Stamp
StampTable. getBehindStamp(StampTable st, boolean useRealStamp)
Gets the most behind stamp of this StampTable according the given StampTable.Stamp
StampTable. getGreatestBehindStamp(Stamp stamp)
Stamp
SyncManager. getGreatestCommonStamp()
Stamp
LogManagerLoadHandler. getGreatestStamp()
Returns the greatest stamp read (this include real stamp but also ID of StorableLogEntry).Stamp
StampTable. getMaxStamp()
Returns the highest stamp contains in this StampTableStamp
StampTable. getMinStamp()
Returns the smallest stamp contains in this StampTableStamp
StampManager. getProgressStamp(java.lang.String urid)
Returns the greatest stamp for a given urid.Stamp
Store. getProgressStamp()
Return the greatest stamp of this uridStamp
Store. getProgressStamp(java.lang.String urid)
Return the greatest stamp of the given uridStamp
StampTable. getRealStamp(java.lang.String urid)
Returns the stamp to which this StampTable maps the specified urid.Stamp
LogEntry. getStamp()
Returns the stamp of this LogEntryStamp
LogicalStampManager. getStamp()
Return a new stamp.abstract Stamp
StampManager. getStamp()
Return a new stamp.Stamp
StampTable. getStamp(java.lang.String urid)
Returns the stamps to which this StampTable maps the specified urid.Stamp
Store. getStamp()
Return a new stamp.Stamp
TemporalStampManager. getStamp()
Return a new stamp.static Stamp
Stamp. max(Stamp s1, Stamp s2)
Return the greater of two stampsstatic Stamp
Stamp. min(Stamp s1, Stamp s2)
Return the smaller of two stampsMethods in com.jalios.jstore that return types with arguments of type Stamp Modifier and Type Method Description java.util.Map<java.lang.String,Stamp>
StampTable. getMap()
Methods in com.jalios.jstore with parameters of type Stamp Modifier and Type Method Description int
StampTable. compareStamp(Stamp stamp)
Compares the given stamp with the ones in the table.int
Stamp. compareTo(Stamp stamp)
Compares this stamp with the specified stamp for order.static Stamp
StoreUtil. findGCS(java.util.List<StorableLogEntry> opList, StampTable minPT, Stamp minUnknownStamp)
Find the GCS (Greatest Common Stamp) in the given list of operations according the given stampTable.int
Store. generateDelta(java.io.OutputStream out, Stamp startStamp, boolean includeStart)
Ouput in a given stream all the log operations having a stamp greater that the given one.Stamp
StampTable. getGreatestBehindStamp(Stamp stamp)
long
Store. getStampLineNumber(Stamp stamp)
Returns the line number in the store file of the given stamp.long
Store. getStampLineNumberInLogWork(Stamp stamp)
Returns the line number in the log work file for the given stamp.boolean
Stamp. isGreaterThan(Stamp stamp)
boolean
StampTable. isGreaterThan(Stamp stamp, boolean isStrict)
Check if this StampTable contains at least one stamp greater than the given stamp.boolean
StampTable. isGreaterThanStamp(Stamp other, boolean isStrict)
Checks if this StampTable contains a stamp greater than the given one.boolean
Stamp. isLesserThan(Stamp stamp)
boolean
StampTable. isLesserThan(Stamp stamp, boolean isStrict)
Check if all the stamps of this StampTable are lesser than the given stamp.boolean
StampTable. isLesserThanStamp(Stamp other, boolean isStrict)
Checks if this StampTable contains a stamp lesser than the given one.static Stamp
Stamp. max(Stamp s1, Stamp s2)
Return the greater of two stampsstatic Stamp
Stamp. min(Stamp s1, Stamp s2)
Return the smaller of two stampslong
LogManager. moveOperations(Stamp stamp, long expectedLineCount)
Move the operations of store-work.xml to the most recent store-prefix-n.xml.long
Store. moveOperations(Stamp stamp, long expectedLineCount)
Move the operations of store-work.xml to the most recent store-prefix-n.xml.void
Store. parseLog(LogManagerHandler handler, Stamp stamp)
Parse the store with the given handler from the given stampvoid
StampTable. putStamp(Stamp stamp)
Puts this stamp in the StampTablevoid
SyncManager. setLastSyncStamp(Stamp lastSyncStamp)
void
LogEntry. setStamp(Stamp stamp)
Sets the stamp of this LogEntryboolean
LogManager. stampExists(Stamp stamp)
boolean
Store. stampExists(Stamp stamp)
void
LogicalStampManager. update(Stamp stamp, boolean updatePT)
Updates the clockvoid
StampManager. update(Stamp stamp, boolean updatePT)
Updates the clock and the progressTablevoid
TemporalStampManager. update(Stamp stamp, boolean updatePT)
Updates the clockvoid
Store. updateStamp(Stamp stamp)
Update the current stamp value (and the progress table)void
Store. updateStamp(Stamp stamp, boolean updatePT)
Update the current stamp valuevoid
StoreCleaner. updateStore(Storable storable, Stamp stamp)
Write an update of a given Storable already created
If the Storable need an Update then doUpdate and remove it from the Update Table
If the Storable doesn't need an update but exist in the Store (warning retrieve it by it's Id) then do an update.void
StoreCleaner. updateStore(java.util.Collection<Storable> collection, Stamp stamp)
Write all updates for the given collectionvoid
StoreCleaner. writeStore(Storable storable, Stamp stamp)
Write create of a Storable then prepare updatevoid
StoreCleaner. writeStore(Storable storable, Stamp stamp, boolean overrideId)
Write create of a Storable then prepare updatevoid
StoreCleaner. writeStore(java.util.Collection<Storable> collection, Stamp stamp)
Write create of a collection of Storable then prepare updatevoid
StoreCleaner. writeStore(java.util.Collection<Storable> collection, Stamp stamp, boolean sort)
Write create of a collection of Storable then prepare updatevoid
StoreCleaner. writeStore(java.util.Collection<Storable> collection, Stamp stamp, boolean sort, boolean overrideId)
Write create of a collection of Storable then prepare updateMethod parameters in com.jalios.jstore with type arguments of type Stamp Modifier and Type Method Description void
CleanFilter. cleanMergeMap(java.util.Map<java.lang.String,java.util.TreeSet<Stamp>> mergeMap)
This method is called to clean the merge map.Constructors in com.jalios.jstore with parameters of type Stamp Constructor Description LogManagerSyncHandler(Stamp syncStamp)
LogManagerSyncHandler(Stamp syncStamp, boolean removeCUDSeq, StampTable progressTable)
LogManagerSyncHandler(Stamp syncStamp, StampTable st)
StampTable(Stamp... stamps)
StoreCleaner(java.lang.String file, Stamp stamp)
Create a StoreCleaner with a starting specific stampStoreCleaner(java.lang.String file, Stamp stamp, boolean overrideId)
Create a Store Cleaner that may override IDs of objects and with starting StampStoreCleaner(java.lang.String file, Stamp stamp, boolean overrideId, boolean doClean)
Create a Store Cleaner that may override IDs of objects and with starting StampStoreCleaner(java.lang.String file, Stamp stamp, boolean overrideId, boolean doClean, java.lang.String mainLang, java.lang.String convLang)
-
Uses of Stamp in com.jalios.jstore.jsync
Methods in com.jalios.jstore.jsync that return Stamp Modifier and Type Method Description Stamp
CommitWorkMessage. getGcs()
Stamp
JSyncReplica. getProgressStamp()
Methods in com.jalios.jstore.jsync with parameters of type Stamp Modifier and Type Method Description java.lang.String
Message. stampToXml(Stamp stamp)
Constructors in com.jalios.jstore.jsync with parameters of type Stamp Constructor Description CommitWorkMessage(java.lang.String urid, Stamp gcs, long lineCount, boolean check)
Constructs a new CommitWorkMessage
-