github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istructsmem/internal/containers/consts.go (about)

     1  /*
     2   * Copyright (c) 2021-present Sigma-Soft, Ltd.
     3   * @author: Nikolay Nikitin
     4   */
     5  
     6  package containers
     7  
     8  import "github.com/voedger/voedger/pkg/istructsmem/internal/vers"
     9  
    10  // constants for system container names
    11  const (
    12  	NullContainerID ContainerID = 0 + iota
    13  
    14  	ContainerNameIDSysLast ContainerID = 63
    15  )
    16  
    17  // maximum Container ID value
    18  const MaxAvailableContainerID = 0xFFFF
    19  
    20  // Containers system view versions
    21  const (
    22  	ver01 vers.VersionValue = vers.UnknownVersion + 1
    23  
    24  	latestVersion = ver01
    25  )