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>) |