Uses of Class
org.ldaptive.transport.DefaultOperationHandle
-
Packages that use DefaultOperationHandle Package Description org.ldaptive.transport org.ldaptive.transport.netty -
-
Uses of DefaultOperationHandle in org.ldaptive.transport
Subclasses of DefaultOperationHandle in org.ldaptive.transport Modifier and Type Class Description class
DefaultCompareOperationHandle
Handle that notifies on the components of a compare request.class
DefaultExtendedOperationHandle
Handle that notifies on the components of an extended request.class
DefaultSearchOperationHandle
Handle that notifies on the components of a search request.Methods in org.ldaptive.transport that return DefaultOperationHandle Modifier and Type Method Description DefaultOperationHandle<Q,S>
DefaultOperationHandle. onComplete(CompleteHandler function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onControl(ResponseControlHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onException(ExceptionHandler function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onIntermediate(IntermediateResponseHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onReferral(ReferralHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onResult(ResultHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. onUnsolicitedNotification(UnsolicitedNotificationHandler... function)
DefaultOperationHandle<Q,S>
DefaultOperationHandle. send()
DefaultOperationHandle<Q,S>
DefaultOperationHandle. throwIf(ResultPredicate function)
Methods in org.ldaptive.transport with parameters of type DefaultOperationHandle Modifier and Type Method Description protected abstract void
TransportConnection. complete(DefaultOperationHandle handle)
Report that the supplied handle has completed.protected abstract void
TransportConnection. write(DefaultOperationHandle handle)
Write the request in the supplied handle to the LDAP server. -
Uses of DefaultOperationHandle in org.ldaptive.transport.netty
Subclasses of DefaultOperationHandle in org.ldaptive.transport.netty Modifier and Type Class Description class
NettyConnection.BindOperationHandle
Bind specific operation handle that locks other operations until the bind completes.Fields in org.ldaptive.transport.netty with type parameters of type DefaultOperationHandle Modifier and Type Field Description private Map<Integer,DefaultOperationHandle>
HandleMap. pending
Map of message IDs to their operation handle.Methods in org.ldaptive.transport.netty that return DefaultOperationHandle Modifier and Type Method Description DefaultOperationHandle
HandleMap. get(int id)
Returns the operation handle for the supplied message id.DefaultOperationHandle<AddRequest,AddResponse>
NettyConnection. operation(AddRequest request)
DefaultOperationHandle<DeleteRequest,DeleteResponse>
NettyConnection. operation(DeleteRequest request)
DefaultOperationHandle<ModifyDnRequest,ModifyDnResponse>
NettyConnection. operation(ModifyDnRequest request)
DefaultOperationHandle<ModifyRequest,ModifyResponse>
NettyConnection. operation(ModifyRequest request)
DefaultOperationHandle
HandleMap. put(int id, DefaultOperationHandle handle)
Puts the supplied operation handle into the queue if the supplied id doesn't already exist in the queue.DefaultOperationHandle
HandleMap. remove(int id)
Removes the operation handle from the supplied message id.Methods in org.ldaptive.transport.netty that return types with arguments of type DefaultOperationHandle Modifier and Type Method Description Collection<DefaultOperationHandle>
HandleMap. handles()
Returns all the operation handles in the queue.Methods in org.ldaptive.transport.netty with parameters of type DefaultOperationHandle Modifier and Type Method Description protected void
NettyConnection. complete(DefaultOperationHandle handle)
DefaultOperationHandle
HandleMap. put(int id, DefaultOperationHandle handle)
Puts the supplied operation handle into the queue if the supplied id doesn't already exist in the queue.protected void
NettyConnection. write(DefaultOperationHandle handle)
-