# File lib/aws/s3/object_collection.rb, line 328
        def add item
          @batch << item
          if @batch.size == @batch_size
            process_batch
            @batch = []
          end
          item
        end