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

com.azure.storage.blob.changefeed.models.BlobChangefeedEvent Maven / Gradle / Ivy

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.storage.blob.changefeed.models;

import java.time.OffsetDateTime;

/**
 * This class contains properties of a BlobChangefeedEvent.
 */
public interface BlobChangefeedEvent {

    /**
     * @return the topic.
     */
    String getTopic();

    /**
     * @return the subject.
     */
    String getSubject();

    /**
     * @return {@link BlobChangefeedEventType}
     */
    BlobChangefeedEventType getEventType();

    /**
     * @return The {@link OffsetDateTime event time}.
     */
    OffsetDateTime getEventTime();

    /**
     * @return the identifier.
     */
    String getId();

    /**
     * @return {@link BlobChangefeedEventData}.
     */
    BlobChangefeedEventData getData();

    /**
     * @return the data version.
     */
    Long getDataVersion();

    /**
     * @return the metadata version.
     */
    String getMetadataVersion();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy