Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
RoundRobinLoadBalancer.java
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2012 Grid Dynamics Consulting Services, Inc, All Rights Reserved
3  * http://www.griddynamics.com
4  *
5  * This library is free software; you can redistribute it and/or modify it under the terms of
6  * the Apache License; either
7  * version 2.0 of the License, or any later version.
8  *
9  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
10  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
11  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
12  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
13  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
14  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
15  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
16  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
17  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
18  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19  */
20 
21 package com.griddynamics.jagger.invoker;
22 
23 import com.griddynamics.jagger.util.Pair;
24 
25 import java.util.Iterator;
26 
40 public class RoundRobinLoadBalancer<Q, E> extends QueryPoolLoadBalancer<Q, E> {
41 
43  super();
44  }
45 
46  public RoundRobinLoadBalancer(Iterable<Q> queryProvider, Iterable<E> endpointProvider){
47  super(queryProvider, endpointProvider);
48  }
49 
57  @Override
58  public Iterator<Pair<Q, E>> provide() {
59  final CircularSupplier<Q> querySupplier = CircularSupplier.create(queryProvider);
60  final CircularSupplier<E> endpointSupplier = CircularSupplier.create(endpointProvider);
61 
62  return new Iterator<Pair<Q, E>>() {
63  @Override
64  public boolean hasNext() {
65  return true;
66  }
67 
68  @Override
69  public Pair<Q, E> next() {
70  E endpoint = endpointSupplier.pop();
71  Q query = querySupplier.pop();
72  return Pair.of(query, endpoint);
73  }
74 
75  @Override
76  public void remove() {
77  throw new UnsupportedOperationException("Read only iterator");
78  }
79 
80  @Override
81  public String toString() {
82  return "RoundRobinLoadBalancer iterator";
83  }
84  };
85  }
86 
87  @Override
88  public String toString() {
89  return "RoundRobinLoadBalancer";
90  }
91 
92 
93 }