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

net.openhft.chronicle.bytes.ref.ByteableIntArrayValues Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016-2022 chronicle.software
 *
 *     https://chronicle.software
 *
 * 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.bytes.ref;

import net.openhft.chronicle.bytes.Byteable;
import net.openhft.chronicle.bytes.DynamicallySized;
import net.openhft.chronicle.core.annotation.NonNegative;
import net.openhft.chronicle.core.io.ClosedIllegalStateException;
import net.openhft.chronicle.core.io.ThreadingIllegalStateException;
import net.openhft.chronicle.core.values.IntArrayValues;

/**
 * Represents an array of integer values, where each integer in the array is byteable and dynamically sized.
 * 

* Implementations of this interface should provide means to manage the array of integers, with * support for resizing the array dynamically. It is meant to be used where direct, low-level access * to the bytes representing the integer values is needed. * * @see IntArrayValues * @see Byteable * @see DynamicallySized */ @SuppressWarnings("rawtypes") public interface ByteableIntArrayValues extends IntArrayValues, Byteable, DynamicallySized { /** * Calculates the size in bytes needed to store the given number of integers. * * @param sizeInBytes the number of integers to be stored. * @return the size in bytes needed to store the specified number of integers. * @throws ClosedIllegalStateException If the resource has been released or closed. * @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way */ @Override long sizeInBytes(@NonNegative long sizeInBytes) throws IllegalStateException; /** * Sets the capacity of the array, in terms of the number of integers it can hold. * * @param arrayLength the desired array capacity, in number of integers. * @return this {@code ByteableIntArrayValues} instance. * @throws ClosedIllegalStateException If the resource has been released or closed. * @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way */ ByteableIntArrayValues capacity(@NonNegative long arrayLength) throws IllegalStateException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy