Determines cache synchronize mode
ILocalCache
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
public enum CacheSyncMode
Public Enumeration CacheSyncMode
public enum class CacheSyncMode
public enum CacheSyncMode
Members
Member | Description |
---|---|
Push |
Remote changes are pushed to the cache when they occur.
|
Pull |
Remote changes cause the cache to invalidate the changed data.
Next access to the same data through the cache will bring the updated data
from the remote space.
|