I have a PriorityBlockingQueue
in which I am adding SocketHolder
as shown below. And let's say current datacenter where this code is running is abc
. We have three datacenters abc
, def
and pqr
.
private static final PriorityBlockingQueue<SocketHolder> liveQueue = new PriorityBlockingQueue<>();
for (SocketHolder socket : listOfSockets) {
liveQueue.add(socket);
}
Now what I need to do is:
- I have to setup some sort of ordering on
liveQueue
so that allSocketHolder
whose datacenter isabc
(which is current datacenter where the code is running), they should be at the top so which means when we retrieve it from thisliveQueue
allSocketHolder
withabc
datacenter should come out first and then later on all otherSocketHolder
with other dc's. Similarly for cases where current datacenter is eitherpqr
ordef
.
Below is my SocketHolder
class that implements Comparable interface but I am confuse what I need to do in my compareTo
method so that at the top of liveQueue
(after adding elements to it) we have all SocketHolder
whose datacenter are current datacenter and then followed by other datacenter in which I have no priority.
public final class SocketHolder implements Comparable<SocketHolder> {
private final Socket socket;
private final Datacenter dc;
private final Context context;
public SocketHolder(Socket socket, Datacenter dc, Context context) {
super();
this.socket = socket;
this.dc = dc;
this.context = context;
}
@Override
public int compareTo(SocketHolder o) {
// String currentDC = Utils.CURRENT_DATACENTER.get().name();
return 0;
}
}