Uses of Interface
org.apache.qpid.protonj2.client.Sender
-
Packages that use Sender Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of Sender in org.apache.qpid.protonj2.client
Subinterfaces of Sender in org.apache.qpid.protonj2.client Modifier and Type Interface Description interface
StreamSender
Sending link implementation that allows sending of large message payload data in multiple transfers to reduce memory overhead of large message sends.Methods in org.apache.qpid.protonj2.client that return Sender Modifier and Type Method Description Sender
Connection. defaultSender()
Returns the default anonymous sender used by thisConnection
forConnection.send(Message)
calls.Sender
Connection. openAnonymousSender()
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Connection. openAnonymousSender(SenderOptions senderOptions)
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Session. openAnonymousSender()
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Session. openAnonymousSender(SenderOptions senderOptions)
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Connection. openSender(java.lang.String address)
Creates a sender used to send messages to the given node address.Sender
Connection. openSender(java.lang.String address, SenderOptions senderOptions)
Creates a sender used to send messages to the given node address.Sender
Session. openSender(java.lang.String address)
Creates a sender used to send messages to the given node address.Sender
Session. openSender(java.lang.String address, SenderOptions senderOptions)
Creates a sender used to send messages to the given node address.Sender
Tracker. sender()
Methods in org.apache.qpid.protonj2.client that return types with arguments of type Sender Modifier and Type Method Description java.util.concurrent.Future<Sender>
Sender. closeAsync()
Requests a close of theSender
link at the remote and returns aFuture
that will be completed once the link has been closed.java.util.concurrent.Future<Sender>
Sender. closeAsync(ErrorCondition error)
Requests a close of theSender
link at the remote and returns aFuture
that will be completed once the link has been closed.java.util.concurrent.Future<Sender>
Sender. detachAsync()
Requests a detach of theSender
link at the remote and returns aFuture
that will be completed once the link has been detached.java.util.concurrent.Future<Sender>
Sender. detachAsync(ErrorCondition error)
Requests a detach of theSender
link at the remote and returns aFuture
that will be completed once the link has been detached.java.util.concurrent.Future<Sender>
Sender. openFuture()
-
Uses of Sender in org.apache.qpid.protonj2.client.impl
Classes in org.apache.qpid.protonj2.client.impl that implement Sender Modifier and Type Class Description class
ClientStreamSender
Client implementation of aStreamSender
.Fields in org.apache.qpid.protonj2.client.impl with type parameters of type Sender Modifier and Type Field Description protected ClientFuture<Sender>
ClientSender. closeFuture
protected ClientFuture<Sender>
ClientSender. openFuture
protected java.util.function.Consumer<Sender>
ClientSender. senderRemotelyClosedHandler
Methods in org.apache.qpid.protonj2.client.impl that return Sender Modifier and Type Method Description Sender
ClientConnection. defaultSender()
Sender
ClientConnection. openAnonymousSender()
Sender
ClientConnection. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientSession. openAnonymousSender()
Sender
ClientSession. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientStreamSession. openAnonymousSender()
Sender
ClientStreamSession. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientConnection. openSender(java.lang.String address)
Sender
ClientConnection. openSender(java.lang.String address, SenderOptions senderOptions)
Sender
ClientSession. openSender(java.lang.String address)
Sender
ClientSession. openSender(java.lang.String address, SenderOptions senderOptions)
Sender
ClientStreamSession. openSender(java.lang.String address)
Sender
ClientStreamSession. openSender(java.lang.String address, SenderOptions senderOptions)
Sender
ClientNoOpTracker. sender()
-