Coverage Report - com.jcabi.dynamo.retry.ReDosage
 
Classes in this File Line Coverage Branch Coverage Complexity
ReDosage
0%
0/9
0%
0/12
1
ReDosage$AjcClosure1
0%
0/1
N/A
1
ReDosage$AjcClosure11
0%
0/1
N/A
1
ReDosage$AjcClosure3
0%
0/1
N/A
1
ReDosage$AjcClosure5
0%
0/1
N/A
1
ReDosage$AjcClosure7
0%
0/1
N/A
1
ReDosage$AjcClosure9
0%
0/1
N/A
1
 
 1  0
 /**
 2  
  * Copyright (c) 2012-2016, jcabi.com
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the jcabi.com nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package com.jcabi.dynamo.retry;
 31  
 
 32  
 import com.amazonaws.services.dynamodbv2.model.AttributeValue;
 33  
 import com.jcabi.aspects.Immutable;
 34  
 import com.jcabi.aspects.Loggable;
 35  
 import com.jcabi.aspects.RetryOnFailure;
 36  
 import com.jcabi.aspects.Tv;
 37  
 import com.jcabi.dynamo.Dosage;
 38  
 import java.util.List;
 39  
 import java.util.Map;
 40  
 import java.util.concurrent.TimeUnit;
 41  
 import lombok.EqualsAndHashCode;
 42  
 import lombok.ToString;
 43  
 
 44  
 /**
 45  
  * Dosage that retries on failure.
 46  
  *
 47  
  * @author Yegor Bugayenko (yegor@tpc2.com)
 48  
  * @version $Id: 4ad396d7e6addda36001c1e09114123e7d602c45 $
 49  
  * @since 0.9
 50  
  */
 51  
 @Immutable
 52  
 @Loggable(Loggable.DEBUG)
 53  0
 @ToString
 54  0
 @EqualsAndHashCode(of = "origin")
 55  
 public final class ReDosage implements Dosage {
 56  
 
 57  
     /**
 58  
      * Original dosage.
 59  
      */
 60  
     private final transient Dosage origin;
 61  
 
 62  
     /**
 63  
      * Public ctor.
 64  
      * @param dosage Origin dosage
 65  
      */
 66  0
     public ReDosage(final Dosage dosage) {
 67  0
         this.origin = dosage;
 68  0
     }
 69  
 
 70  
     @Override
 71  
     @RetryOnFailure(verbose = false, delay = Tv.FIVE, unit = TimeUnit.SECONDS)
 72  
     public List<Map<String, AttributeValue>> items() {
 73  0
         return this.origin.items();
 74  
     }
 75  
 
 76  
     @Override
 77  
     @RetryOnFailure(verbose = false, delay = Tv.FIVE, unit = TimeUnit.SECONDS)
 78  
     public boolean hasNext() {
 79  0
         return this.origin.hasNext();
 80  
     }
 81  
 
 82  
     @Override
 83  
     @RetryOnFailure(verbose = false, delay = Tv.FIVE, unit = TimeUnit.SECONDS)
 84  
     public Dosage next() {
 85  0
         return new ReDosage(this.origin.next());
 86  
     }
 87  
 }