2011-09-16 16 views

答えて

2

答えはsource codeです。

if (txn != null && 
     bulkAddRequest.encodingSize() > QueueConstants.maxTransactionalRequestSizeBytes()) { 
     throw new IllegalArgumentException(
      String.format("Transactional add may not be larger than %d bytes: %d bytes requested.", 
       QueueConstants.maxTransactionalRequestSizeBytes(), 
       bulkAddRequest.encodingSize())); 
    } 
関連する問題