Uses of Class
org.apache.qpid.protonj2.client.NextReceiverPolicy
-
Packages that use NextReceiverPolicy Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of NextReceiverPolicy in org.apache.qpid.protonj2.client
Fields in org.apache.qpid.protonj2.client declared as NextReceiverPolicy Modifier and Type Field Description static NextReceiverPolicy
ConnectionOptions. DEFAULT_NEXT_RECEIVER_POLICY
Methods in org.apache.qpid.protonj2.client that return NextReceiverPolicy Modifier and Type Method Description NextReceiverPolicy
ConnectionOptions. defaultNextReceiverPolicy()
NextReceiverPolicy
SessionOptions. defaultNextReceiverPolicy()
static NextReceiverPolicy
NextReceiverPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static NextReceiverPolicy[]
NextReceiverPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.qpid.protonj2.client with parameters of type NextReceiverPolicy Modifier and Type Method Description ConnectionOptions
ConnectionOptions. defaultNextReceiverPolicy(NextReceiverPolicy policy)
Configures the default next receiver policy for this connection and any session that is created without specifying user defined session default options.SessionOptions
SessionOptions. defaultNextReceiverPolicy(NextReceiverPolicy policy)
Configures the default next receiver policy for the session created with these configuration options.Receiver
Connection. nextReceiver(NextReceiverPolicy policy)
Waits indefinitely for a receiver created from the connection default session to have a delivery ready for receipt.Receiver
Connection. nextReceiver(NextReceiverPolicy policy, long timeout, TimeUnit unit)
Waits for the configured time interval for a receiver created from the connection default session to have a delivery ready for receipt.Receiver
Session. nextReceiver(NextReceiverPolicy policy)
Waits indefinitely for a receiver created from this session to have a delivery ready for receipt.Receiver
Session. nextReceiver(NextReceiverPolicy policy, long timeout, TimeUnit unit)
Waits for the given duration for a receiver created from this session to have a delivery ready for receipt. -
Uses of NextReceiverPolicy in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type NextReceiverPolicy Modifier and Type Method Description Receiver
ClientConnection. nextReceiver(NextReceiverPolicy policy)
Receiver
ClientConnection. nextReceiver(NextReceiverPolicy policy, long timeout, TimeUnit unit)
Receiver
ClientSession. nextReceiver(NextReceiverPolicy policy)
Receiver
ClientSession. nextReceiver(NextReceiverPolicy policy, long timeout, TimeUnit unit)
-