コード例 #1
0
 public IResponseState Parse(Header header, IEndianAwareReader reader)
 {
     var success = reader.ReadBool();
     return new RollbackResponseState(success);
 }
コード例 #2
0
 public IResponseState Parse(Header header, IEndianAwareReader reader)
 {
     var exists = reader.ReadBool();
     return new JournalExistsResponseState(exists);
 }