Home
last modified time | relevance | path

Searched refs:RoundRobinEntry (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
DGrpclbState.java96 static final RoundRobinEntry BUFFER_ENTRY = new RoundRobinEntry() {
676 List<RoundRobinEntry> pickList = new ArrayList<>(backendList.size()); in maybeUpdatePicker()
806 private interface RoundRobinEntry { interface in GrpclbState
811 static final class BackendEntry implements RoundRobinEntry {
872 static final class ErrorEntry implements RoundRobinEntry {
912 final List<? extends RoundRobinEntry> pickList;
917 RoundRobinPicker(List<DropEntry> dropList, List<? extends RoundRobinEntry> pickList) { in RoundRobinPicker()
943 RoundRobinEntry pick = pickList.get(pickIndex); in pickSubchannel()