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

net.openhft.chronicle.wire.ReadMarshallable Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016-2020 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.wire;

import net.openhft.chronicle.bytes.CommonMarshallable;
import net.openhft.chronicle.core.annotation.DontChain;
import net.openhft.chronicle.core.io.IORuntimeException;
import net.openhft.chronicle.core.io.InvalidMarshallableException;
import org.jetbrains.annotations.NotNull;

/**
 * This interface represents objects that can be reloaded from a stream by reusing an existing instance.
 * Instead of creating a new object every time the data is read from a stream, instances implementing
 * this interface can update their state based on the stream content, thereby potentially improving performance
 * and reducing garbage.
 * 

* For objects which need to deserialize final fields, consider using the {@link Demarshallable} interface. * *

* Example usage might involve reading an object's state from a file or network stream * without allocating a new object on each read operation. */ @FunctionalInterface @DontChain public interface ReadMarshallable extends CommonMarshallable { // An instance of ReadMarshallable that doesn't perform any action when reading. ReadMarshallable DISCARD = w -> {}; /** * Reads the object's state from the given wire input. * Implementations should update the current instance's state based on the content of the wire. * * @param wire The wire input from which the object's state should be read. * * @throws IORuntimeException If there's an error reading from the wire. * @throws InvalidMarshallableException If the data in the wire is not as expected or invalid. */ void readMarshallable(@NotNull WireIn wire) throws IORuntimeException, InvalidMarshallableException; /** * Handles unexpected fields encountered during the deserialization process. * Default behavior is to skip the unexpected value. Override this method if a different behavior is required. * * @param event The event or field identifier that was unexpected. * @param valueIn The value associated with the unexpected field. * * @throws InvalidMarshallableException If the unexpected field cannot be processed. */ default void unexpectedField(Object event, ValueIn valueIn) throws InvalidMarshallableException { valueIn.skipValue(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy