2011-09-16 3 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())); 
    }