Package com.swiftmq.swiftlet.store
Class DurableStoreEntry
- java.lang.Object
-
- com.swiftmq.swiftlet.store.DurableStoreEntry
-
public class DurableStoreEntry extends java.lang.ObjectDurable subscriber entry in the DurableSubscriberStore.- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
-
-
Constructor Summary
Constructors Constructor Description DurableStoreEntry(java.lang.String clientId, java.lang.String durableName, java.lang.String topicName, java.lang.String selector, boolean noLocal)Creates a DurableStoreEntry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClientId()Returns the client id.java.lang.StringgetDurableName()Returns the durable name.java.lang.StringgetSelector()Returns the selector string.java.lang.StringgetTopicName()Returns the topic name.booleanisNoLocal()Returns the no-local flag.
-
-
-
Constructor Detail
-
DurableStoreEntry
public DurableStoreEntry(java.lang.String clientId, java.lang.String durableName, java.lang.String topicName, java.lang.String selector, boolean noLocal)Creates a DurableStoreEntry.- Parameters:
clientId- client id.durableName- durable name.topicName- topic name.selector- selector string.noLocal- no-local flaf.
-
-
Method Detail
-
getClientId
public java.lang.String getClientId()
Returns the client id.- Returns:
- client id.
-
getDurableName
public java.lang.String getDurableName()
Returns the durable name.- Returns:
- durable name.
-
getTopicName
public java.lang.String getTopicName()
Returns the topic name.- Returns:
- topic name.
-
getSelector
public java.lang.String getSelector()
Returns the selector string.- Returns:
- selector string.
-
isNoLocal
public boolean isNoLocal()
Returns the no-local flag.- Returns:
- no-local flag.
-
-