Package org.apache.qpid.protonj2.client
Interface Source
-
public interface Source
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
address()
Set<String>
capabilities()
DeliveryState
defaultOutcome()
DistributionMode
distributionMode()
DurabilityMode
durabilityMode()
boolean
dynamic()
Map<String,Object>
dynamicNodeProperties()
ExpiryPolicy
expiryPolicy()
Map<String,String>
filters()
Set<DeliveryState.Type>
outcomes()
long
timeout()
-
-
-
Method Detail
-
address
String address()
- Returns:
- the address of the Source node.
-
durabilityMode
DurabilityMode durabilityMode()
- Returns:
- the durabilityMode of this Source node.
-
timeout
long timeout()
- Returns:
- the timeout assigned to this Source node in seconds.
-
expiryPolicy
ExpiryPolicy expiryPolicy()
- Returns:
- the
ExpiryPolicy
of this Source node.
-
dynamic
boolean dynamic()
- Returns:
- true if the Source node was created dynamically on-demand
-
dynamicNodeProperties
Map<String,Object> dynamicNodeProperties()
- Returns:
- the properties of the dynamically created Source node.
-
distributionMode
DistributionMode distributionMode()
- Returns:
- the
DistributionMode
of this Source node.
-
defaultOutcome
DeliveryState defaultOutcome()
- Returns:
- the default outcome configured for this Source node.
-
outcomes
Set<DeliveryState.Type> outcomes()
- Returns:
- the supported outcome types of this Source node.
-
-