コード例 #1
0
ファイル: TransactionEvent.cs プロジェクト: deveel/deveeldb
 public TransactionEvent(TransactionEventType eventType)
 {
     EventType = eventType;
 }
コード例 #2
0
 public TransactionEvent(int commitId, TransactionEventType eventType)
 {
     CommitId = commitId;
     EventType = eventType;
 }