Class EntityRuntimeInfo
- java.lang.Object
-
- com.microsoft.azure.servicebus.management.EntityRuntimeInfo
-
- Direct Known Subclasses:
QueueRuntimeInfo
,SubscriptionRuntimeInfo
,TopicRuntimeInfo
public abstract class EntityRuntimeInfo extends Object
Base class for runtime information for entities
-
-
Constructor Summary
Constructors Constructor Description EntityRuntimeInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Instant
getAccessedAt()
Instant
getCreatedAt()
MessageCountDetails
getMessageCountDetails()
String
getPath()
Instant
getUpdatedAt()
-
-
-
Method Detail
-
getPath
public String getPath()
- Returns:
- The path of the entity.
-
getMessageCountDetails
public MessageCountDetails getMessageCountDetails()
- Returns:
- Message count details of the sub-queues of the entity.
-
getCreatedAt
public Instant getCreatedAt()
- Returns:
- The date-time when entity was created.
-
getUpdatedAt
public Instant getUpdatedAt()
- Returns:
- The date-time when the entity was updated
-
getAccessedAt
public Instant getAccessedAt()
- Returns:
- The date-time when the entity was last accessed.
-
-