1 4 package com.tc.net.core; 5 6 public interface ConnectionAddressProvider { 7 8 public static final int ROUND_ROBIN = 0; 11 public static final int LINEAR = 1; 15 16 String getHostname(); 17 18 int getPortNumber(); 19 20 int getCount(); 21 22 boolean hasNext(); 23 24 ConnectionInfo getConnectionInfo(); 25 26 ConnectionInfo next(); 27 28 void setPolicy(int policy); 29 30 } | Popular Tags |