Package io.milvus.param
Class MultiConnectParam
- java.lang.Object
-
- io.milvus.param.MultiConnectParam
-
public class MultiConnectParam extends Object
Parameters for client connection of multi server.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultiConnectParam.BuilderBuilder forMultiConnectParam
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthorization()longgetConnectTimeoutMs()List<ServerAddress>getHosts()longgetIdleTimeoutMs()longgetKeepAliveTimeMs()longgetKeepAliveTimeoutMs()QueryNodeSingleSearchgetQueryNodeSingleSearch()booleanisKeepAliveWithoutCalls()booleanisSecure()static MultiConnectParam.BuildernewBuilder()StringtoString()Constructs aStringbyConnectParaminstance.
-
-
-
Method Detail
-
getHosts
public List<ServerAddress> getHosts()
-
getQueryNodeSingleSearch
public QueryNodeSingleSearch getQueryNodeSingleSearch()
-
getConnectTimeoutMs
public long getConnectTimeoutMs()
-
getKeepAliveTimeMs
public long getKeepAliveTimeMs()
-
getKeepAliveTimeoutMs
public long getKeepAliveTimeoutMs()
-
isKeepAliveWithoutCalls
public boolean isKeepAliveWithoutCalls()
-
isSecure
public boolean isSecure()
-
getIdleTimeoutMs
public long getIdleTimeoutMs()
-
getAuthorization
public String getAuthorization()
-
newBuilder
public static MultiConnectParam.Builder newBuilder()
-
toString
public String toString()
Constructs aStringbyConnectParaminstance.
-
-