github.com/milvus-io/milvus-sdk-go/v2@v2.4.1/entity/load.go (about) 1 // Copyright (C) 2019-2021 Zilliz. All rights reserved. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance 4 // with the License. You may obtain a copy of the License at 5 // 6 // http://www.apache.org/licenses/LICENSE-2.0 7 // 8 // Unless required by applicable law or agreed to in writing, software distributed under the License 9 // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 10 // or implied. See the License for the specific language governing permissions and limitations under the License. 11 12 package entity 13 14 type LoadState int32 15 16 const ( 17 LoadStateNotExist LoadState = 0 18 LoadStateNotLoad LoadState = 1 19 LoadStateLoading LoadState = 2 20 LoadStateLoaded LoadState = 3 21 )