Orleans.EventSourcing.CustomStorage Namespace
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Classes
LogConsistencyProvider |
A log-consistency provider that relies on grain-specific custom code for reading states from storage, and appending deltas to storage. Grains that wish to use this provider must implement the ICustomStorageInterface<TState,TDelta> interface, to define how state is read and how deltas are written. If the provider attribute "PrimaryCluster" is supplied in the provider configuration, then only the specified cluster accesses storage, and other clusters may not issue updates. |
LogConsistencyProviderFactory |
Interfaces
ICustomStorageInterface<TState,TDelta> |
The storage interface exposed by grains that want to use the CustomStorage log-consistency provider |