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

com.amazon.ion.IvmNotificationConsumer Maven / Gradle / Ivy

The newest version!
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

package com.amazon.ion;

@FunctionalInterface
public interface IvmNotificationConsumer {

    /**
     * Invoked when the cursor encounters an Ion version marker (IVM).
     *
     * @param majorVersion the major version indicated by the new IVM.
     * @param minorVersion the minor version indicated by the new IVM.
     */
    void ivmEncountered(int majorVersion, int minorVersion);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy