ILogViewAdaptor<TLogView,TLogEntry> 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
日志视图适配器是 的存储接口 ILogConsistentGrain,其状态定义为日志视图。
每个粒度都有一个适配器,激活粒度时由 ILogConsistencyProvider 安装。
public interface ILogViewAdaptor<TLogView,TLogEntry> : Orleans.LogConsistency.ILogConsistencyDiagnostics, Orleans.LogConsistency.ILogViewRead<TLogView,TLogEntry>, Orleans.LogConsistency.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>) |
UnresolvedConnectionIssues |
获取当前所有未解决的连接问题的列表。 (继承自 ILogConsistencyDiagnostics) |