All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.chronicle.hash.VanillaGlobalMutableState Maven / Gradle / Ivy

There is a newer version: 3.26ea4
Show newest version
/*
 * Copyright 2012-2018 Chronicle Map Contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.openhft.chronicle.hash;

import net.openhft.chronicle.bytes.Byteable;
import net.openhft.chronicle.values.Group;
import net.openhft.chronicle.values.Range;
import net.openhft.chronicle.values.Values;

/**
 * 

This interface is a private API, don't use in client code

*

* Excluding global mutable state lock */ public interface VanillaGlobalMutableState extends Byteable { static void main(String[] args) { System.setProperty("chronicle.values.dumpCode", "true"); Values.nativeClassFor(VanillaGlobalMutableState.class); } @Group(1) int getAllocatedExtraTierBulks(); void setAllocatedExtraTierBulks(@Range(min = 0, max = 16777215) int allocatedExtraTierBulks); @Group(2) long getFirstFreeTierIndex(); void setFirstFreeTierIndex(@Range(min = 0, max = 1099511627775L) long firstFreeTierIndex); @Group(3) long getExtraTiersInUse(); void setExtraTiersInUse(@Range(min = 0, max = 1099511627775L) long extraTiersInUse); @Group(4) long getSegmentHeadersOffset(); void setSegmentHeadersOffset(@Range(min = 0, max = 4294967295L) long segmentHeadersOffset); @Group(5) long getDataStoreSize(); void setDataStoreSize(@Range(min = 0, max = Long.MAX_VALUE) long dataStoreSize); long addDataStoreSize(long addition); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy