Uses of Interface
org.forgerock.opendj.ldap.messages.AbandonRequest
-
Packages that use AbandonRequest Package Description org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses. -
-
Uses of AbandonRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type AbandonRequest Modifier and Type Method Description void
LdapWriter. writeAbandonRequest(int messageID, AbandonRequest request)
Writes the provided abandon request. -
Uses of AbandonRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type AbandonRequest Modifier and Type Method Description LdapPromise<Void>
AbstractConnectionWrapper. abandonAsync(AbandonRequest request)
Abandons the unfinished operation identified in the provided abandon request.LdapPromise<Void>
AbstractSynchronousConnection. abandonAsync(AbandonRequest request)
Abandon operations are not supported because operations are performed synchronously and the ID of the request to be abandoned cannot be determined.LdapPromise<Void>
Connection. abandonAsync(AbandonRequest request)
Abandons the unfinished operation identified in the provided abandon request. -
Uses of AbandonRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return AbandonRequest Modifier and Type Method Description AbandonRequest
AbandonRequest. addControl(Control control)
AbandonRequest
AbandonRequest. addControls(Iterable<? extends Control> controls)
static AbandonRequest
Requests. copyOfAbandonRequest(AbandonRequest request)
Creates a new abandon request that is an exact copy of the provided request.static AbandonRequest
Requests. newAbandonRequest(int requestID)
Creates a new abandon request using the provided message ID.AbandonRequest
AbandonRequest. setRequestId(int id)
Sets the request ID of the request to be abandoned.static AbandonRequest
Requests. unmodifiableAbandonRequest(AbandonRequest request)
Creates an unmodifiable abandon request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type AbandonRequest Modifier and Type Method Description static AbandonRequest
Requests. copyOfAbandonRequest(AbandonRequest request)
Creates a new abandon request that is an exact copy of the provided request.static AbandonRequest
Requests. unmodifiableAbandonRequest(AbandonRequest request)
Creates an unmodifiable abandon request of the provided request.R
AbstractRequestVisitor. visitRequest(P p, AbandonRequest request)
R
RequestVisitor. visitRequest(P p, AbandonRequest request)
Visits anAbandon
request.
-