Package io.milvus.param.collection
Class LoadCollectionParam.Builder
- java.lang.Object
-
- io.milvus.param.collection.LoadCollectionParam.Builder
-
- Enclosing class:
- LoadCollectionParam
public static final class LoadCollectionParam.Builder extends java.lang.Object
Builder forLoadCollectionParam
class.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoadCollectionParam
build()
Verifies parameters and creates a newLoadCollectionParam
instance.LoadCollectionParam.Builder
withCollectionName(@NonNull java.lang.String collectionName)
Sets the collection name.LoadCollectionParam.Builder
withSyncLoad(@NonNull java.lang.Boolean syncLoad)
Enable sync mode for load action.LoadCollectionParam.Builder
withSyncLoadWaitingInterval(@NonNull java.lang.Long milliseconds)
Sets waiting interval in sync mode.LoadCollectionParam.Builder
withSyncLoadWaitingTimeout(@NonNull java.lang.Long seconds)
Sets timeout value for the sync mode.
-
-
-
Method Detail
-
withCollectionName
public LoadCollectionParam.Builder withCollectionName(@NonNull @NonNull java.lang.String collectionName)
Sets the collection name. Collection name cannot be empty or null.- Parameters:
collectionName
- collection name- Returns:
Builder
-
withSyncLoad
public LoadCollectionParam.Builder withSyncLoad(@NonNull @NonNull java.lang.Boolean syncLoad)
Enable sync mode for load action. With sync mode enabled, the client keeps waiting until all segments of the collection successfully loaded. If sync mode disabled, client returns at once after the loadCollection() is called.- Parameters:
syncLoad
-Boolean.TRUE
is sync mode, Boolean.FALSE is not- Returns:
Builder
-
withSyncLoadWaitingInterval
public LoadCollectionParam.Builder withSyncLoadWaitingInterval(@NonNull @NonNull java.lang.Long milliseconds)
Sets waiting interval in sync mode. With sync mode enabled, the client will constantly check collection load state by interval. Interval must be greater than zero, and cannot be larger than Constant.MAX_WAITING_LOADING_INTERVAL.- Parameters:
milliseconds
- interval- Returns:
Builder
- See Also:
Constant
-
withSyncLoadWaitingTimeout
public LoadCollectionParam.Builder withSyncLoadWaitingTimeout(@NonNull @NonNull java.lang.Long seconds)
Sets timeout value for the sync mode. Timeout value must be greater than zero, and cannot be greater than Constant.MAX_WAITING_LOADING_TIMEOUT.- Parameters:
seconds
- time out value for sync mode- Returns:
Builder
- See Also:
Constant
-
build
public LoadCollectionParam build() throws ParamException
Verifies parameters and creates a newLoadCollectionParam
instance.- Returns:
LoadCollectionParam
- Throws:
ParamException
-
-