Example #1
0
 public EndTxnResponse(long requestId, long leastBits, long mostBits, TransactionCoordinatorClientException error)
 {
     RequestId = requestId;
     LeastBits = leastBits;
     MostBits  = mostBits;
     Error     = error;
 }
Example #2
0
 public NewTxnResponse(long requestid, long least, long most, TransactionCoordinatorClientException error)
 {
     RequestId    = requestid;
     MostSigBits  = most;
     LeastSigBits = least;
     Error        = error;
 }