MSFClusterBuilderMode
Objective-C
enum MSFClusterBuilderMode : NSInteger {}
Swift
enum MSFClusterBuilderMode : Int, @unchecked Sendable
Possible cluster builder modes.
-
Cluster builder receives full list of elements in the cluster. This mode is more expensive compared to the light mode.
Declaration
Objective-C
MSF_CLUSTER_BUILDER_MODE_ELEMENTSSwift
case CLUSTER_BUILDER_MODE_ELEMENTS = 0 -
Cluster builder receives element count in the cluster. This mode is less expensive compared to the full mode.
Declaration
Objective-C
MSF_CLUSTER_BUILDER_MODE_ELEMENT_COUNTSwift
case CLUSTER_BUILDER_MODE_ELEMENT_COUNT = 1