Click or drag to resize

IClientPersistentState Interface

Persistent state store interface that should be implemented by the client.

Namespace: Sportradar.SDK.Common.Interfaces
Assembly: Common (in Common.dll) Version: 2.28.0.0
Syntax
C#
public interface IClientPersistentState

The IClientPersistentState type exposes the following members.

Methods
 NameDescription
Public methodClear Clears persistent state store contents.
Public methodRead Retrieves value for the given key from the persistent store.
Public methodReadAll Returns all persistent state items from the store.
Public methodRemove Removes an item by key
Public methodRemoveOld Removes stale persistent state items that haven't been updated in a while.
Public methodWrite Write batch of key-value pairs into client provided persistent store (DB, file system).
Top
Remarks
If this interface is not implemented, XML feed error recovery will not be possible
See Also