ILogViewAdaptor<TLogView,TLogEntry> 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
日志视图适配器是 的存储接口 LogConsistentGrain<TView>,其状态定义为日志视图。
每个粒度有一个适配器,激活粒度时会 ILogViewAdaptorFactory 安装该适配器。
public interface ILogViewAdaptor<TLogView,TLogEntry> : Orleans.EventSourcing.ILogConsistencyDiagnostics, Orleans.EventSourcing.ILogViewRead<TLogView,TLogEntry>, Orleans.EventSourcing.ILogViewUpdate<TLogEntry> where TLogView : new()
type ILogViewAdaptor<'LogView, 'LogEntry (requires 'LogView : (new : unit -> 'LogView))> = interface
interface ILogViewRead<'LogView, 'LogEntry (requires 'LogView : (new : unit -> 'LogView))>
interface ILogViewUpdate<'LogEntry>
interface ILogConsistencyDiagnostics
Public Interface ILogViewAdaptor(Of TLogView, TLogEntry)
Implements ILogConsistencyDiagnostics, ILogViewRead(Of TLogView, TLogEntry), ILogViewUpdate(Of TLogEntry)
类型参数
- TLogView
日志视图的类型
- TLogEntry
日志条目的类型
- 派生
- 实现
属性
ConfirmedVersion |
日志的已确认前缀的长度 (继承自 ILogViewRead<TView,TLogEntry>) |
ConfirmedView |
日志的已确认视图 (仅反映已确认条目) (继承自 ILogViewRead<TView,TLogEntry>) |
TentativeView |
日志 (反映已确认和未确认条目的本地暂定视图) (继承自 ILogViewRead<TView,TLogEntry>) |
UnconfirmedSuffix |
尚未出现在已确认前缀中的已提交条目的列表。 (继承自 ILogViewRead<TView,TLogEntry>) |