public class MemoryBookmarkStore extends java.lang.Object implements BookmarkStore
Constructor and Description |
---|
MemoryBookmarkStore() |
MemoryBookmarkStore(int targetNumberOfSubscriptions)
Initialize self with a target number of subscriptions to store
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
discard(Field subId,
long bookmarkSeqNo)
Call this when you want to mark the message specified by the
subscription ID and the bookmark sequence number as discarded,
indicating that the application has completed processing the message.
|
void |
discard(Message message)
Call this when you want to mark the provided message as discarded,
indicating that the application has completed processing the message.
|
Field |
getMostRecent(Field subId)
Call this when you want to return the correct recovery point for
resubscription of the provided subID from the BookmarkStore.
|
long |
getOldestBookmarkSeq(Field subId)
Call this when you want to retrieve the sequence number of the oldest bookmark in the store.
|
int |
getServerVersion()
Called by Client when connected to an AMPS server in order to retrieve the version
number of the server.
|
boolean |
isDiscarded(Message message)
Called for each arriving message to determine if
the application has already processed and discarded this message.
|
long |
log(Message message)
Called internally by the Client to log a bookmark to the persistent log.
|
void |
noPersistedAcks(Field subId)
Called internally by the Client to let the bookmark store know that the AMPS
server version doesn't support persisted acks for bookmarks.
|
void |
persisted(Field subId,
BookmarkField bookmark)
Called internally by the Client to record the last persisted message in the transaction log of the connected AMPS server
to all of its sync replication destinations.
|
void |
persisted(Field subId,
long bookmark)
Called internally by the Client to record the last persisted message in the transaction log of the connected AMPS server.
|
void |
purge()
Call this when you want to purge the contents of this store.
|
void |
purge(Field subId_)
Call this when you want to purge the contents of this store for a given subscription ID.
|
void |
setResizeHandler(BookmarkStoreResizeHandler handler)
Called this when you want to set a resize handler that is invoked when the store needs to resize.
|
void |
setServerVersion(int version)
Called internally by the Client when connected to an AMPS server to indicate
what version the server is.
|
public MemoryBookmarkStore()
public MemoryBookmarkStore(int targetNumberOfSubscriptions)
targetNumberOfSubscriptions
- the number of subscriptions this store will need to trackpublic long log(Message message) throws AMPSException
BookmarkStore
log
in interface BookmarkStore
message
- The message containing the bookmark to log.AMPSException
- Thrown when the message cannot be logged.public void discard(Field subId, long bookmarkSeqNo) throws AMPSException
BookmarkStore
discard
in interface BookmarkStore
subId
- The subscription ID of the bookmark.bookmarkSeqNo
- The bookmark sequence number.AMPSException
- Thrown when the specified bookmark cannot be discareded.public void discard(Message message) throws AMPSException
BookmarkStore
discard
in interface BookmarkStore
message
- Message to be marked as discarded.AMPSException
- Thrown when the specified message cannot be discareded.public Field getMostRecent(Field subId) throws AMPSException
BookmarkStore
getMostRecent
in interface BookmarkStore
subId
- The subscription ID of the most recent bookmark.AMPSException
- Thrown when the store cannot produce a recovery point for the specified subID.public boolean isDiscarded(Message message) throws AMPSException
BookmarkStore
isDiscarded
in interface BookmarkStore
message
- Message used to determine if the application has already
processed and discarded the message.AMPSException
- Thrown when the store cannot determine if the message is discarded.public void persisted(Field subId, long bookmark) throws AMPSException
BookmarkStore
persisted
in interface BookmarkStore
subId
- The subscription ID for the message.bookmark
- The bookmark sequence number.AMPSException
- Thrown if the store is unable to record information in the store.public void persisted(Field subId, BookmarkField bookmark) throws AMPSException
BookmarkStore
persisted
in interface BookmarkStore
subId
- The subscription ID for the message.bookmark
- The bookmark containing the message.AMPSException
- Thrown if the store is unable to record information in the store.public void noPersistedAcks(Field subId) throws AMPSException
BookmarkStore
noPersistedAcks
in interface BookmarkStore
subId
- The subscription ID for the bookmark.AMPSException
- Thrown if the store is unable to set this property.public void purge() throws AMPSException
BookmarkStore
purge
in interface BookmarkStore
AMPSException
- Thrown if the store is unable to remove the contents.public void purge(Field subId_) throws AMPSException
BookmarkStore
purge
in interface BookmarkStore
subId_
- The identifier of the subscription to purge.AMPSException
- Thrown if the store is unable to remove information for the subscription.public long getOldestBookmarkSeq(Field subId) throws AMPSException
BookmarkStore
getOldestBookmarkSeq
in interface BookmarkStore
subId
- The subscription ID for the oldest bookmark in the store.AMPSException
- The operation could not successfully be completed.public void setResizeHandler(BookmarkStoreResizeHandler handler)
BookmarkStore
setResizeHandler
in interface BookmarkStore
handler
- The handler to invoke for the resize.public void setServerVersion(int version)
BookmarkStore
setServerVersion
in interface BookmarkStore
version
- The version of the AMPS server.public int getServerVersion()
public void close()