com.azure.storage.blob.changefeed.models.BlobChangefeedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob-changefeed Show documentation
Show all versions of azure-storage-blob-changefeed Show documentation
This module contains client library for Microsoft Azure Blob Storage changefeed.
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